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