Allow for coexistence of various versions of perldiag.pod
[p5sagit/p5-mst-13.2.git] / dosish.h
1 #define ABORT() abort();
2
3 #define SH_PATH "/bin/sh"
4
5 #ifdef DJGPP
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
11 #else   /* DJGPP */
12 #  define PERL_SYS_INIT(c,v)
13 #  ifdef WIN32
14 #    define BIT_BUCKET "nul"
15 #  else
16 #    define BIT_BUCKET "\\dev\\nul" /* "wanna be like, umm, Newlined, or somethin?" */
17 #  endif
18 #endif  /* DJGPP */
19
20 #define PERL_SYS_TERM()
21 #define dXSUB_SYS int dummy
22 #define TMPPATH "plXXXXXX"
23
24 #ifdef WIN32
25 #define HAS_UTIME
26 #endif
27
28 /*
29  * 5.003_07 and earlier keyed on #ifdef MSDOS for determining if we were 
30  * running on DOS, *and* if we had to cope with 16 bit memory addressing 
31  * constraints, *and* we need to have memory allocated as unsigned long.
32  *
33  * with the advent of *real* compilers for DOS, they are not locked together.
34  * MSDOS means "I am running on MSDOS". HAS_64K_LIMIT means "I have 
35  * 16 bit memory addressing constraints".
36  *
37  * if you need the last, try #DEFINE MEM_SIZE unsigned long.
38  */
39 #ifdef MSDOS
40  #ifndef DJGPP
41   #define HAS_64K_LIMIT
42  #endif
43 #endif
44
45 /* USEMYBINMODE
46  *      This symbol, if defined, indicates that the program should
47  *      use the routine my_binmode(FILE *fp, char iotype) to insure
48  *      that a file is in "binary" mode -- that is, that no translation
49  *      of bytes occurs on read or write operations.
50  */
51 #undef USEMYBINMODE
52
53 /* USE_STAT_RDEV:
54  *      This symbol is defined if this system has a stat structure declaring
55  *      st_rdev
56  */
57 #define USE_STAT_RDEV   /**/
58
59 /* ACME_MESS:
60  *      This symbol, if defined, indicates that error messages should be 
61  *      should be generated in a format that allows the use of the Acme
62  *      GUI/editor's autofind feature.
63  */
64 #undef ACME_MESS        /**/
65
66 /* ALTERNATE_SHEBANG:
67  *      This symbol, if defined, contains a "magic" string which may be used
68  *      as the first line of a Perl program designed to be executed directly
69  *      by name, instead of the standard Unix #!.  If ALTERNATE_SHEBANG
70  *      begins with a character other then #, then Perl will only treat
71  *      it as a command line if if finds the string "perl" in the first
72  *      word; otherwise it's treated as the first line of code in the script.
73  *      (IOW, Perl won't hand off to another interpreter via an alternate
74  *      shebang sequence that might be legal Perl code.)
75  */
76 /* #define ALTERNATE_SHEBANG "#!" / **/
77
78 /*
79  * fwrite1() should be a routine with the same calling sequence as fwrite(),
80  * but which outputs all of the bytes requested as a single stream (unlike
81  * fwrite() itself, which on some systems outputs several distinct records
82  * if the number_of_items parameter is >1).
83  */
84 #define fwrite1 fwrite
85
86 #define Fstat(fd,bufptr)   fstat((fd),(bufptr))
87 #define Fflush(fp)         fflush(fp)
88
89 #ifndef WIN32
90 #  define Stat(fname,bufptr) stat((fname),(bufptr))
91 #else
92 #  define Stat(fname,bufptr) win32_stat((fname),(bufptr))
93 #  define my_getenv(var)  getenv(var)
94 /*
95  * the following are standard library calls (stdio in particular)
96  * that is being redirected to the perl DLL. This is needed for 
97  * Dynaloading any modules that called stdio functions
98  */
99 #  include <win32iop.h>
100 #endif  /* WIN32 */