blob: 13b31dc3c0f7bcbfe33749fa72d2e3ae1a94f2cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
diff -uNr snips-1.2.ORIG/ntpmon/main.c snips-1.2/ntpmon/main.c
--- snips-1.2.ORIG/ntpmon/main.c 2008-06-27 13:08:34.000000000 +0100
+++ snips-1.2/ntpmon/main.c 2008-06-27 13:08:57.000000000 +0100
@@ -42,10 +42,6 @@
#include "event_utils.h"
#undef _MAIN_
-/* function prototypes */
-void set_functions();
-void free_device_list(struct device_info **pslist);
-
/* We keep a linked list of all the devices that we poll and store the
* various thresholds in this linked list.
*/
@@ -55,6 +51,10 @@
struct device_info *next;
} *device_info_list = NULL;
+/* function prototypes */
+void set_functions();
+void free_device_list(struct device_info **pslist);
+
int main(ac, av)
int ac;
char **av;
|