home *** CD-ROM | disk | FTP | other *** search
/ Power-Programmierung / CD2.mdf / c / library / dos / communic / pcmail / daemon / syslog.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-06-05  |  782 b   |  43 lines

  1. /*++
  2.  
  3. /* NAME
  4.  
  5. /*    syslog 5
  6.  
  7. /* SUMMARY
  8.  
  9. /*    surrogate BSD4.3 syslog facility
  10.  
  11. /* PROJECT
  12.  
  13. /*    pc-mail
  14.  
  15. /* PACKAGE
  16.  
  17. /*    nfs
  18.  
  19. /* SYNOPSIS
  20.  
  21. /*    include "syslog.h"
  22.  
  23. /* DESCRIPTION
  24.  
  25. /* .nf
  26.  
  27.  
  28.  
  29.  /* Do nothing if we already have <syslog.h> */
  30.  
  31.  
  32.  
  33. #ifndef SYSLOG
  34.  
  35.  
  36.  
  37.  /* various constants */
  38.  
  39.  
  40.  
  41. #define    LOG_PID        1
  42.  
  43. #define    LOG_MAIL    1
  44.  
  45. #define    LOG_WARNING    1
  46.  
  47.  
  48.  
  49. extern  openlog();
  50.  
  51. extern  syslog();
  52.  
  53. extern  closelog();
  54.  
  55.  
  56.  
  57. #endif
  58.  
  59. /* AUTHOR(S)
  60.  
  61. /*    Wietse Z. Venema
  62.  
  63. /*    Eindhoven University of Technology
  64.  
  65. /*    Department of Mathematics and Computer Science
  66.  
  67. /*    Den Dolech 2, P.O. Box 513, 5600 MB Eindhoven, The Netherlands
  68.  
  69. /* CREATION DATE
  70.  
  71. /*    Sun Oct 29 15:12:57 MET 1989
  72.  
  73. /* LAST MODIFICATION
  74.  
  75. /*    10/29/89 22:29:50
  76.  
  77. /* VERSION/RELEASE
  78.  
  79. /*    1.1
  80.  
  81. /*--*/
  82.  
  83.  
  84.  
  85.