home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 1 / GoldFishApril1994_CD1.img / d0xx / d084 / ed / amiga.c < prev    next >
Text File  |  1987-06-28  |  169b  |  15 lines

  1. /*
  2.  *  Fake the library routines not supplied on the Amiga.  They really aren't
  3.  *  very important anyway...
  4.  */
  5.  
  6. signal ()
  7. {
  8.     return (-1);
  9. }
  10.  
  11. fork ()
  12. {
  13.     return (-1);
  14. }
  15.