summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorGergely Nagy <algernon@madhouse-project.org>2012-03-19 23:01:19 +0100
committerGergely Nagy <algernon@madhouse-project.org>2012-03-19 23:01:19 +0100
commitb77bcbd50a9a6fecffce718773d1a231d5b722b5 (patch)
treea1a709b684f428bf6d420e8e411341402ac8923d /lib
parentd665a62248df7e14f3787138e7089caaad648ded (diff)
downloadlibumberlog-b77bcbd50a9a6fecffce718773d1a231d5b722b5.tar.gz
libumberlog-b77bcbd50a9a6fecffce718773d1a231d5b722b5.tar.xz
libumberlog-b77bcbd50a9a6fecffce718773d1a231d5b722b5.zip
Remove the syslog() and vsyslog() overrides.
We will override syslog() and vsyslog() with other functions, remove the current aliases for now. Signed-off-by: Gergely Nagy <algernon@madhouse-project.org>
Diffstat (limited to 'lib')
-rw-r--r--lib/cee-syslog.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/lib/cee-syslog.c b/lib/cee-syslog.c
index a459ff8..13deaa8 100644
--- a/lib/cee-syslog.c
+++ b/lib/cee-syslog.c
@@ -117,9 +117,3 @@ cee_vsyslog (int priority, const char *msg_format, va_list ap)
old_syslog (priority, "@cee:%s", _cee_vformat (&jo, msg_format, ap));
json_object_put (jo);
}
-
-void syslog (int priority, const char *format, ...)
- __attribute__((alias ("cee_syslog")));
-
-void vsyslog (int priority, const char *format, va_list ap)
- __attribute__((alias ("cee_vsyslog")));