summaryrefslogtreecommitdiff
path: root/win32/syslog.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2017-08-19 13:49:45 +0200
committerAnatol Belski <ab@php.net>2017-08-19 13:51:44 +0200
commitdda70e01069af9cf833ee8a207c4083c437b8343 (patch)
treeffe689c5758a63927d64ce4b939c0cfb2ea93e79 /win32/syslog.h
parenta1f3a0105d885879102d366de506c353a75c8d04 (diff)
downloadphp-git-dda70e01069af9cf833ee8a207c4083c437b8343.tar.gz
Follow up on ed9c16ad5def47d1c8ae2787f53dccfac893ce5f
The event log is not line based, passing the message as is here is just fine. Otherwise we'd create multiple event log items with partial messages.
Diffstat (limited to 'win32/syslog.h')
-rw-r--r--win32/syslog.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/win32/syslog.h b/win32/syslog.h
index 104c4b75ff..3220ed66b6 100644
--- a/win32/syslog.h
+++ b/win32/syslog.h
@@ -73,6 +73,7 @@
extern void closelog(void);
extern void openlog(const char *, int, int);
extern void syslog(int, const char *, ...);
+extern void vsyslog(int, const char *, va_list ap);
#endif /* SYSLOG_H */