/*
** @(#) Revision 1.1 - 01/17/97
** logwrite.h
**
** ======================================================================= 
** Andrea Whitlock, Mobius Software Services
** whitlock@mobius-soft.com
** 
** Bug reports, questions, and suggestions should be emailed to:
** mobius@mobius-soft.com
**
** This software is provided under the terms of the GNU copyleft
** (ftp://prep.ai.mit.edu/pub/gnu/COPYING-2.0), without a warranty
** of any kind.  Use at your own risk.
** ======================================================================= 
** 
** Description:
** Include file.
**
** Notes:
** Set tabstops to 4.
**
*/

static char logwritehSccsId[] = "@(#)logwrite.h	1.1\t01/17/97";
static char logwritehVerId[] = "VER 1.1";

/* includes */

#include <time.h>

/* defines */

#ifndef LOGFILE
#define LOGFILE 	"/usr/local/etc/message.log"
#endif /* can be defined in makefile */
#define KEYID		'L'
#define NEWLINE		1
#define NONEWLINE	0

/* function prototypes */
char	*timestamp(void);
int		logwrite(int, char *, char *, char *, int);

