repo.or.cz
/
netbsd-mini2440.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Patrick Welche <prlw1@cam.ac.uk>
[netbsd-mini2440.git]
/
external
/
bsd
/
ntp
/
dist
/
sntp
/
log.h
blob
6db09747e190aab3e065513954e742941a015962
1
/* $NetBSD$ */
2
3
#ifndef LOG_H
4
#define LOG_H
5
6
#include
"config.h"
7
8
#include <stdio.h>
9
#include <stdlib.h>
10
#include <stdarg.h>
11
#include <syslog.h>
12
#include <time.h>
13
14
15
void
log_msg
(
char
*
message
,
char
type
);
16
void
debug_msg
(
char
*
message
);
17
18
void
init_log
(
const char
*
logfile
);
19
void
cleanup_log
(
void
);
20
21
#endif