summaryrefslogtreecommitdiffstats
path: root/dhcpcd.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2014-01-24 11:09:39 +0000
committerRoy Marples <roy@marples.name>2014-01-24 11:09:39 +0000
commit322ebc208b013485eecb47caa7a272afe289c0ee (patch)
treed9635a1a2fb7c0cfba3efe7aef8b0acb00908605 /dhcpcd.c
parent3582c56dcdc12294a84b38dd7a32ce00ac6b0d25 (diff)
downloaddhcpcd-322ebc208b013485eecb47caa7a272afe289c0ee.tar.xz
Ensure that config.h or common.h is the first included local header.
Thanks to Sebastian Huber.
Diffstat (limited to 'dhcpcd.c')
-rw-r--r--dhcpcd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/dhcpcd.c b/dhcpcd.c
index 57687159..d6dfa067 100644
--- a/dhcpcd.c
+++ b/dhcpcd.c
@@ -48,8 +48,8 @@ const char dhcpcd_copyright[] = "Copyright (c) 2006-2014 Roy Marples";
#include <unistd.h>
#include <time.h>
-#include "arp.h"
#include "config.h"
+#include "arp.h"
#include "common.h"
#include "control.h"
#include "dev.h"