home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / developer-tools / andere sprachen / perl5 / perl5.002 / dosish.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-27  |  610 b   |  20 lines

  1. #define ABORT() abort();
  2.  
  3. #define BIT_BUCKET "/dev/null"  /* Will this work? */
  4. #define PERL_SYS_INIT(c,v)
  5. #define TMPPATH "plXXXXXX"
  6.  
  7. /*
  8.  * fwrite1() should be a routine with the same calling sequence as fwrite(),
  9.  * but which outputs all of the bytes requested as a single stream (unlike
  10.  * fwrite() itself, which on some systems outputs several distinct records
  11.  * if the number_of_items parameter is >1).
  12.  */
  13. #define fwrite1 fwrite
  14.  
  15. #define Stat(fname,bufptr) stat((fname),(bufptr))
  16. #define Fstat(fd,bufptr)   fstat((fd),(bufptr))
  17. #define Fflush(fp)         fflush(fp)
  18.  
  19. #define my_getenv(var)  getenv(var)
  20.