home *** CD-ROM | disk | FTP | other *** search
/ RISC DISC 2 / RISC_DISC_2.iso / pd_share / program / language / as / source / h / uname < prev    next >
Encoding:
Text File  |  1994-09-06  |  296 b   |  17 lines

  1.  
  2. /*
  3.  * uname.h
  4.  * Copyright © 1992 Niklas Röjemo
  5.  */
  6.  
  7. #ifdef UNIX
  8. #include <sys/param.h>        /* for MAXPATHLEN */
  9. #include <unistd.h>        /* for access() stuff */
  10. #define uname(a,b) (a)
  11. #define DIR '/'
  12. #else
  13. char *uname (const char *name, int PrefixDir);
  14. #define MAXPATHLEN 1024
  15. #define DIR '.'
  16. #endif
  17.