diff options
Diffstat (limited to 'sqmail-4.3.07/src/trysyslog.c')
-rw-r--r-- | sqmail-4.3.07/src/trysyslog.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sqmail-4.3.07/src/trysyslog.c b/sqmail-4.3.07/src/trysyslog.c new file mode 100644 index 0000000..4b99afc --- /dev/null +++ b/sqmail-4.3.07/src/trysyslog.c @@ -0,0 +1,9 @@ +#include <sys/types.h> +#include <sys/time.h> +#include <syslog.h> + +main() +{ + openlog("foo",0,LOG_MAIL); + syslog(0,"foo"); +} |