stringify looses integerness
[p5sagit/p5-mst-13.2.git] / dosish.h
index dfc5e35..8734cda 100644 (file)
--- a/dosish.h
+++ b/dosish.h
@@ -1,6 +1,8 @@
 #define ABORT() abort();
 
+#ifndef SH_PATH
 #define SH_PATH "/bin/sh"
+#endif
 
 #ifdef DJGPP
 #  define BIT_BUCKET "nul"
@@ -18,11 +20,12 @@ void Perl_DJGPP_init();
 #endif /* DJGPP */
 
 #define PERL_SYS_TERM()
-#define dXSUB_SYS int dummy
+#define dXSUB_SYS
 #define TMPPATH "plXXXXXX"
 
 #ifdef WIN32
 #define HAS_UTIME
+#define HAS_KILL
 #endif
 
 /*
@@ -85,6 +88,7 @@ void Perl_DJGPP_init();
 
 #define Fstat(fd,bufptr)   fstat((fd),(bufptr))
 #define Fflush(fp)         fflush(fp)
+#define Mkdir(path,mode)   mkdir((path),(mode))
 
 #ifndef WIN32
 #  define Stat(fname,bufptr) stat((fname),(bufptr))