summaryrefslogtreecommitdiff
path: root/net_dgpsip.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-01-02 22:29:16 +0000
committerEric S. Raymond <esr@thyrsus.com>2010-01-02 22:29:16 +0000
commitd5904b6b45850cc731d45ec81ff2294d0afe26ad (patch)
tree7c4a7359ac46d3a01475b203a17c03d634438e57 /net_dgpsip.c
parentf46e4a8da378d9287824c7ce84ef296effaa3c94 (diff)
downloadgpsd-d5904b6b45850cc731d45ec81ff2294d0afe26ad.tar.gz
David Ludlow's housekeeping and type-cleanup patch.
All regression tests pass,
Diffstat (limited to 'net_dgpsip.c')
-rw-r--r--net_dgpsip.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/net_dgpsip.c b/net_dgpsip.c
index e771e5ec..9829d2bb 100644
--- a/net_dgpsip.c
+++ b/net_dgpsip.c
@@ -1,16 +1,21 @@
/* $Id$ */
/* net_dgpsip.c -- gather and dispatch DGPS data from DGPSIP servers */
+#include <stdlib.h>
+#include "gpsd_config.h"
#include <sys/types.h>
#ifndef S_SPLINT_S
-#include <sys/socket.h>
-#include <unistd.h>
+ #ifdef HAVE_SYS_SOCKET_H
+ #include <sys/socket.h>
+ #endif /* HAVE_SYS_SOCKET_H */
+ #include <unistd.h>
#endif /* S_SPLINT_S */
#include <sys/time.h>
-#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#ifndef S_SPLINT_S
-#include <netdb.h>
+ #ifdef HAVE_NETDB_H
+ #include <netdb.h>
+ #endif /* HAVE_NETDB_H */
#endif /* S_SPLINT_S */
#include <string.h>
#include <errno.h>