/* * Copyright (C) 2008, Brian Cully */ #ifndef _LOG_H #define _LOG_H void openlog(); void closelog(); void logmsg(const char *format, ...); #endif