confdata.c (10a4b2772e7643247ddb5316c644f1fe7c4dccca) | confdata.c (5a6f8d2bd9e3392569ed6f29ea4d7210652f929b) |
---|---|
1/* 2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 3 * Released under the terms of the GNU GPL v2.0. 4 */ 5 6#include <sys/stat.h> 7#include <ctype.h> 8#include <errno.h> 9#include <fcntl.h> 10#include <stdarg.h> 11#include <stdio.h> 12#include <stdlib.h> 13#include <string.h> 14#include <time.h> 15#include <unistd.h> 16 | 1/* 2 * Copyright (C) 2002 Roman Zippel <zippel@linux-m68k.org> 3 * Released under the terms of the GNU GPL v2.0. 4 */ 5 6#include <sys/stat.h> 7#include <ctype.h> 8#include <errno.h> 9#include <fcntl.h> 10#include <stdarg.h> 11#include <stdio.h> 12#include <stdlib.h> 13#include <string.h> 14#include <time.h> 15#include <unistd.h> 16 |
17#define LKC_DIRECT_LINK | |
18#include "lkc.h" 19 20static void conf_warning(const char *fmt, ...) 21 __attribute__ ((format (printf, 1, 2))); 22 23static void conf_message(const char *fmt, ...) 24 __attribute__ ((format (printf, 1, 2))); 25 --- 1020 unchanged lines hidden --- | 17#include "lkc.h" 18 19static void conf_warning(const char *fmt, ...) 20 __attribute__ ((format (printf, 1, 2))); 21 22static void conf_message(const char *fmt, ...) 23 __attribute__ ((format (printf, 1, 2))); 24 --- 1020 unchanged lines hidden --- |