This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
win32: additional default libraries
[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 */
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 */
55497cff 21
59c30bed 22#define PERL_SYS_TERM()
8cc95fdb 23#define dXSUB_SYS
e632a5f6 24#define TMPPATH "plXXXXXX"
c07a80fd 25
3fe9a6f1 26#ifdef WIN32
27#define HAS_UTIME
5aabfad6 28#define HAS_KILL
3fe9a6f1 29#endif
30
55497cff 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
e6aa3164 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
44a8e56a 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
a0d0e21e
LW
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
a0d0e21e 89#define Fstat(fd,bufptr) fstat((fd),(bufptr))
a5f75d66 90#define Fflush(fp) fflush(fp)
8cc95fdb 91#define Mkdir(path,mode) mkdir((path),(mode))
3fe9a6f1 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 */