home *** CD-ROM | disk | FTP | other *** search
/ Unix System Administration Handbook 1997 October / usah_oct97.iso / news / cnews.tar / include / libc.h < prev    next >
C/C++ Source or Header  |  1994-10-17  |  496b  |  23 lines

  1. #ifndef LIBC_H
  2. #define LIBC_H
  3. /*
  4.  * declarations of (supposedly) standard C library functions and types.
  5.  */
  6.  
  7. extern time_t time();            /* sys/timeb.h? time.h sez POSIX */
  8.  
  9. extern FILE *popen();            /* stdio.h */
  10.  
  11. /* these unfortunately cannot be relied upon to be in the right header */
  12. extern struct passwd *getpwnam();    /* pwd.h */
  13. extern char *ctime();            /* time.h */
  14.  
  15. extern char *mktemp();
  16.  
  17. extern int optind;
  18. extern char *optarg;
  19.  
  20. #include "alloc.h"
  21. #include <stdlib.h>
  22. #endif                    /* LIBC_H */
  23.