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@xxxxxxx> diff --git a/sys-utils/dmesg.c b/sys-utils/dmesg.c index d7adc0a..ac0535d 100644 --- a/sys-utils/dmesg.c +++ b/sys-utils/dmesg.c @@ -33,20 +33,9 @@ #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; -- To unsubscribe from this list: send the line "unsubscribe util-linux-ng" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html