blob: 9aff53ab2b07e836dc20a6f6ee01d9b0067400f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
/* $Id: log.h,v 1.1 2000/02/29 00:32:12 shmit Exp $ */
#ifndef LOG_H
# define LOG_H
void log_open();
void log_err(const char *fmt, ...);
void log_warn(const char *fmt, ...);
void log_info(const char *fmt, ...);
#endif /* LOG_H */
|