diff options
Diffstat (limited to 'src/linux/klogctl.c')
-rw-r--r-- | src/linux/klogctl.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/linux/klogctl.c b/src/linux/klogctl.c index 8102ee64..a24f8769 100644 --- a/src/linux/klogctl.c +++ b/src/linux/klogctl.c @@ -5,3 +5,11 @@ int klogctl (int type, char *buf, int len) { return syscall(SYS_syslog, type, buf, len); } + + +#ifdef TEST +int +main(void) { + return 0; +} +#endif |