/*
* This module intercepts syslog() library calls and redirects their output
* to the standard output stream. For interactive testing.
*
* Author: Wietse Venema, Eindhoven University of Technology, The Netherlands.
*/
#ifndef lint
#endif
#include <stdio.h>
#include "mystdarg.h"
/* openlog - dummy */
/* ARGSUSED */
void
char *name;
int logopt;
int facility;
{
/* void */
}
/* vsyslog - format one record */
void
int severity;
char *fmt;
{
printf("\n");
}
/* syslog - format one record */
/* VARARGS */
void
{
char *fmt;
}
/* closelog - dummy */
void
closelog()
{
/* void */
}