home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 25 / AACD 25.iso / AACD / Magazine / Online / QMail / source / trysyslog.c < prev    next >
Encoding:
C/C++ Source or Header  |  1997-04-15  |  125 b   |  10 lines

  1. #include <sys/types.h>
  2. #include <sys/time.h>
  3. #include <syslog.h>
  4.  
  5. main()
  6. {
  7.   openlog("foo",0,LOG_MAIL);
  8.   syslog(0,"foo");
  9. }
  10.