repo.or.cz
/
git.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Doc/git-submodule: improve readability and grammar of a sentence
[git.git]
/
compat
/
win32
/
syslog.h
blob
70daa7c08b8d7acb46a1633f30961faef9ab50f3
1
#ifndef SYSLOG_H
2
#define SYSLOG_H
3
4
#define LOG_PID 0x01
5
6
#define LOG_EMERG 0
7
#define LOG_ALERT 1
8
#define LOG_CRIT 2
9
#define LOG_ERR 3
10
#define LOG_WARNING 4
11
#define LOG_NOTICE 5
12
#define LOG_INFO 6
13
#define LOG_DEBUG 7
14
15
#define LOG_DAEMON (3<<3)
16
17
void
openlog
(
const char
*
ident
,
int
logopt
,
int
facility
);
18
void
syslog
(
int
priority
,
const char
*
fmt
, ...);
19
20
#endif
/* SYSLOG_H */