home *** CD-ROM | disk | FTP | other *** search
- #ifdef AMIGA
-
- #include <fcntl.h>
-
- #ifdef AMIGA_MC68881
- #include <m68881.h>
- #endif /* AMIGA_MC68881 */
-
- /* stdarg adjustments */
- #ifndef va_dcl
- #define va_dcl int va_alist;
- #endif /* !va_dcl*/
-
- /* BSD compat */
- #include <string.h>
- /* SAS/C does these; other might not */
- #ifndef bcopy
- #define bcopy(from, to, len) memmove(to, from, len)
- #endif
-
- /* SAS/C library code includes unlink(). *
- * If your compiler doesn't have unlink(), *
- * uncomment this section. */
- /*
- #ifndef unlink
- #define unlink DeleteFile
- #endif
- */
-
- #endif /*AMIGA*/
-