home *** CD-ROM | disk | FTP | other *** search
/ OpenStep 4.1 (User) / OpenStep 4.1 (User).iso / usr / lib / perl5 / CORE / dosish.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-09-10  |  463 b   |  15 lines

  1. #define ABORT() abort();
  2.  
  3. /*
  4.  * fwrite1() should be a routine with the same calling sequence as fwrite(),
  5.  * but which outputs all of the bytes requested as a single stream (unlike
  6.  * fwrite() itself, which on some systems outputs several distinct records
  7.  * if the number_of_items parameter is >1).
  8.  */
  9. #define fwrite1 fwrite
  10.  
  11. #define Stat(fname,bufptr) stat((fname),(bufptr))
  12. #define Fstat(fd,bufptr)   fstat((fd),(bufptr))
  13.  
  14. #define my_getenv(var)  getenv(var)
  15.