1 2 3 4 5 6 7 8 9 10 11 12
/* * Copyright (C) 2008, Brian Cully <bjc@kublai.com> */ #ifndef _LOG_H #define _LOG_H void openlog(); void closelog(); void logmsg(const char *format, ...); #endif