1 #define ABORT() abort();
3 #define SH_PATH "/bin/sh"
6 #define BIT_BUCKET "nul"
7 #define OP_BINARY O_BINARY
8 void Perl_DJGPP_init();
9 #define PERL_SYS_INIT(argcp, argvp) STMT_START { \
10 Perl_DJGPP_init(); } STMT_END
12 #define PERL_SYS_INIT(c,v)
13 #define BIT_BUCKET "\dev\nul"
16 #define PERL_SYS_TERM()
17 #define dXSUB_SYS int dummy
18 #define TMPPATH "plXXXXXX"
21 * 5.003_07 and earlier keyed on #ifdef MSDOS for determining if we were
22 * running on DOS, *and* if we had to cope with 16 bit memory addressing
23 * constraints, *and* we need to have memory allocated as unsigned long.
25 * with the advent of *real* compilers for DOS, they are not locked together.
26 * MSDOS means "I am running on MSDOS". HAS_64K_LIMIT means "I have
27 * 16 bit memory addressing constraints".
29 * if you need the last, try #DEFINE MEM_SIZE unsigned long.
38 * This symbol, if defined, indicates that the program should
39 * use the routine my_binmode(FILE *fp, char iotype) to insure
40 * that a file is in "binary" mode -- that is, that no translation
41 * of bytes occurs on read or write operations.
46 * This symbol is defined if this system has a stat structure declaring
49 #define USE_STAT_RDEV /**/
52 * This symbol, if defined, indicates that error messages should be
53 * should be generated in a format that allows the use of the Acme
54 * GUI/editor's autofind feature.
59 * fwrite1() should be a routine with the same calling sequence as fwrite(),
60 * but which outputs all of the bytes requested as a single stream (unlike
61 * fwrite() itself, which on some systems outputs several distinct records
62 * if the number_of_items parameter is >1).
64 #define fwrite1 fwrite
66 #define Stat(fname,bufptr) stat((fname),(bufptr))
67 #define Fstat(fd,bufptr) fstat((fd),(bufptr))
68 #define Fflush(fp) fflush(fp)
70 #define my_getenv(var) getenv(var)