home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume9 / pc-mail-nfs / syslog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1989-11-26  |  698 b   |  43 lines

  1. /*++
  2. /* NAME
  3. /*    syslog 5
  4. /* SUMMARY
  5. /*    surrogate BSD4.3 syslog facility
  6. /* PROJECT
  7. /*    pc-mail
  8. /* PACKAGE
  9. /*    nfs
  10. /* SYNOPSIS
  11. /*    include "syslog.h"
  12. /* DESCRIPTION
  13. /* .nf
  14.  
  15.  /* Do nothing if we already have <syslog.h> */
  16.  
  17. #ifndef SYSLOG
  18.  
  19.  /* various constants */
  20.  
  21. #define    LOG_PID        1
  22. #define    LOG_MAIL    1
  23. #define    LOG_WARNING    1
  24.  
  25. extern  openlog();
  26. extern  syslog();
  27. extern  closelog();
  28.  
  29. #endif
  30. /* AUTHOR(S)
  31. /*    Wietse Z. Venema
  32. /*    Eindhoven University of Technology
  33. /*    Department of Mathematics and Computer Science
  34. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  35. /* CREATION DATE
  36. /*    Sun Oct 29 15:12:57 MET 1989
  37. /* LAST MODIFICATION
  38. /*    10/29/89 22:29:50
  39. /* VERSION/RELEASE
  40. /*    1.1
  41. /*--*/
  42.  
  43.