home *** CD-ROM | disk | FTP | other *** search
/ Da Capo / da_capo_vol1.bin / programs / amiga / edit / amisox3.3 / dist / amiga.h < prev    next >
C/C++ Source or Header  |  1994-02-20  |  553b  |  31 lines

  1. #ifdef AMIGA
  2.  
  3. #include <fcntl.h>
  4.  
  5. #ifdef AMIGA_MC68881
  6. #include <m68881.h>
  7. #endif /* AMIGA_MC68881 */
  8.  
  9. /* stdarg adjustments */
  10. #ifndef va_dcl
  11. #define va_dcl int va_alist;
  12. #endif /* !va_dcl*/
  13.  
  14. /* BSD compat */
  15. #include <string.h>
  16. /* SAS/C does these; other might not */
  17. #ifndef bcopy
  18. #define    bcopy(from, to, len)    memmove(to, from, len)
  19. #endif
  20.  
  21. /* SAS/C library code includes unlink().   *
  22.  * If your compiler doesn't have unlink(), *
  23.  * uncomment this section.                 */
  24. /*
  25. #ifndef unlink
  26. #define    unlink        DeleteFile
  27. #endif
  28. */
  29.  
  30. #endif /*AMIGA*/
  31.