home *** CD-ROM | disk | FTP | other *** search
-
- /*
- * uname.h
- * Copyright © 1992 Niklas Röjemo
- */
-
- #ifdef UNIX
- #include <sys/param.h> /* for MAXPATHLEN */
- #include <unistd.h> /* for access() stuff */
- #define uname(a,b) (a)
- #define DIR '/'
- #else
- char *uname (const char *name, int PrefixDir);
- #define MAXPATHLEN 1024
- #define DIR '.'
- #endif
-