summaryrefslogtreecommitdiff
path: root/lcdgps.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-12-14 09:56:31 -0500
committerEric S. Raymond <esr@thyrsus.com>2010-12-14 09:56:31 -0500
commit65224a85007d6576c706c1ce3fae6b9e99ba1b28 (patch)
tree3eb0aeb4e4ceb04dca5dc64d78635bcbec76fc6d /lcdgps.c
parent05a7a7c1b248f23ef9d7332b597534190f06e4f2 (diff)
downloadgpsd-65224a85007d6576c706c1ce3fae6b9e99ba1b28.tar.gz
Taking SuS seriously some more.
Diffstat (limited to 'lcdgps.c')
-rw-r--r--lcdgps.c38
1 files changed, 5 insertions, 33 deletions
diff --git a/lcdgps.c b/lcdgps.c
index ceec94b9..f4c74920 100644
--- a/lcdgps.c
+++ b/lcdgps.c
@@ -34,52 +34,24 @@
#define CLIMB 3
-
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/time.h> /* for select() */
-#include "gpsd_config.h"
-#ifndef S_SPLINT_S
- #ifdef HAVE_SYS_SOCKET_H
- #include <sys/socket.h>
- #endif /* HAVE_SYS_SOCKET_H */
-#endif /* S_SPLINT_S */
-#ifndef S_SPLINT_S
- #ifdef HAVE_NETINET_IN_H
- #include <netinet/in.h>
- #endif /* HAVE_NETINET_IN_H */
- #ifdef HAVE_ARPA_INET_H
- #include <arpa/inet.h>
- #endif /* HAVE_ARPA_INET_H */
- #ifdef HAVE_NETDB_H
- #include <netdb.h>
- #endif /* HAVE_NETDB_H */
-#endif /* S_SPLINT_S */
-
#include <stdlib.h>
#include <string.h>
-#ifndef S_SPLINT_S
- #include <unistd.h>
-#endif /* S_SPLINT_S */
#include <math.h>
#include <errno.h>
-
#include <fcntl.h>
-#ifdef HAVE_TERMIOS_H
- #include <termios.h>
-#endif /* HAVE_TERMIOS_H */
+#include <termios.h>
+#include <netdb.h>
+#ifndef S_SPLINT_S
+#include <unistd.h>
+#endif /* S_SPLINT_S */
#include "gps.h"
#include "gpsdclient.h"
#include "revision.h"
-/* Macro for declaring function arguments unused. */
-#if defined(__GNUC__)
-# define UNUSED __attribute__((unused)) /* Flag variable as unused */
-#else /* not __GNUC__ */
-# define UNUSED
-#endif
-
/* Prototypes. */
void latlon2maidenhead(char *st,float n,float e);
static void daemonize(void);