]> err.no Git - util-linux/commitdiff
dmesg: nuke old glibc 5 support
authormaximilian attems <max@stro.at>
Thu, 24 Jul 2008 11:44:44 +0000 (13:44 +0200)
committerKarel Zak <kzak@redhat.com>
Mon, 28 Jul 2008 09:06:50 +0000 (11:06 +0200)
dmesg.c:42: error: expected declaration specifiers or ‘...’ before ‘klogctl’
dmesg.c:42: error: expected declaration specifiers or ‘...’ before ‘type’
dmesg.c:42: error: expected declaration specifiers or ‘...’ before ‘b’
dmesg.c:42: error: expected declaration specifiers or ‘...’ before ‘len’

without belows compat section dmesg just compiles fine against klibc.
as bonus reorder the includes.

Signed-off-by: maximilian attems <max@stro.at>
sys-utils/dmesg.c

index d7adc0aefa25292ac55ea093425ee31f454d9c79..ac0535d780ad2af3139ec5313155362f48c14b8b 100644 (file)
 #include <stdio.h>
 #include <getopt.h>
 #include <stdlib.h>
-#include "nls.h"
-
-#if __GNU_LIBRARY__ < 5
-
-#ifndef __alpha__
-# define __NR_klogctl __NR_syslog
-  static inline _syscall3(int, klogctl, int, type, char *, b, int, len);
-#else /* __alpha__ */
-#define klogctl syslog
-#endif
-
-#else
 # include <sys/klog.h>
-#endif
+
+#include "nls.h"
 
 static char *progname;