home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / security / netlog-1.02 / extract / stdunix.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-04-20  |  459 b   |  21 lines

  1. /*
  2.      extract - A network log processor
  3.      Copyright (C) 1993 Douglas Lee Schales, David K. Hess, David R. Safford
  4.  
  5.      Please see the file `COPYING' for the complete copyright notice.
  6.  
  7. stdunix.h - 03/20/93
  8.  
  9. */
  10. #ifndef __STDUNIX_H__
  11. #define __STDUNIX_H__
  12.  
  13. extern int fprintf(FILE *, char *, ...);
  14. extern void perror(char *);
  15. extern int fputs(char *, FILE *);
  16. extern int fputc(int, FILE *);
  17. extern void fflush(FILE *);
  18. extern void fclose(FILE *);
  19.  
  20. #endif
  21.