aboutsummaryrefslogtreecommitdiffstats
path: root/editcap.c
diff options
context:
space:
mode:
authorJaap Keuter <jaap.keuter@xs4all.nl>2007-01-16 19:13:09 +0000
committerJaap Keuter <jaap.keuter@xs4all.nl>2007-01-16 19:13:09 +0000
commit849fafe7f778e8a092fc810e515163b77c0e3258 (patch)
tree9eaecc5027985a819a4ff4e87ad2d638c2a971d2 /editcap.c
parenta5017f043ff770b8b30ac9ed81632ead1f3a0ca9 (diff)
From Sebastien Tandeil:
a patch to avoid the warning "implicit declaration of function 'strptime'" in editcap.c glib.h is included just after the define __USE_XOPEN and include <time.h> svn path=/trunk/; revision=20455
Diffstat (limited to 'editcap.c')
-rw-r--r--editcap.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/editcap.c b/editcap.c
index 3188c31757..58e33e9db8 100644
--- a/editcap.c
+++ b/editcap.c
@@ -15,6 +15,14 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+
+/*
+ * Just make sure we include the prototype for strptime as well
+ * (needed for glibc 2.2)
+ */
+
+#define __USE_XOPEN
+#include <time.h>
#include <glib.h>
#ifdef HAVE_UNISTD_H
@@ -22,13 +30,7 @@
#endif
-/*
- * Just make sure we include the prototype for strptime as well
- * (needed for glibc 2.2)
- */
-#define __USE_XOPEN
-#include <time.h>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
#endif