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