summaryrefslogtreecommitdiff
path: root/gpsmon.c
diff options
context:
space:
mode:
authorEric S. Raymond <esr@thyrsus.com>2010-12-01 19:51:35 -0500
committerEric S. Raymond <esr@thyrsus.com>2010-12-01 19:51:35 -0500
commita13d392e9f5cfa6e9b35cdbe61db80d0ed0ffde8 (patch)
tree77f8800d7caa3c7ddd1e2add2c9660987c6ccb5c /gpsmon.c
parenta92a5c2d17b1e4eb0d2ac0e71a8d5c2fe45f60ac (diff)
downloadgpsd-a13d392e9f5cfa6e9b35cdbe61db80d0ed0ffde8.tar.gz
Unused-header removals by deheader. All regression tests pass.
Diffstat (limited to 'gpsmon.c')
-rw-r--r--gpsmon.c10
1 files changed, 0 insertions, 10 deletions
diff --git a/gpsmon.c b/gpsmon.c
index 8a7aaa33..35d0f155 100644
--- a/gpsmon.c
+++ b/gpsmon.c
@@ -4,29 +4,20 @@
* This file is Copyright (c) 2010 by the GPSD project
* BSD terms apply: see the file COPYING in the distribution root for details.
*/
-#include <sys/types.h>
-#include <stdio.h>
#include <stdlib.h>
#include <string.h>
-#include <math.h>
#include <ctype.h>
#ifndef S_SPLINT_S
#include <unistd.h>
#endif /* S_SPLINT_S */
#include <assert.h>
-#include <signal.h>
#include <setjmp.h>
/* Cygwin has only _timezone and not timezone unless the following is set */
#if defined(__CYGWIN__)
#define timezonevar
#endif /* defined(__CYGWIN__) */
-#include <time.h>
-#include <termios.h>
#include <fcntl.h> /* for O_RDWR */
-#include <stdarg.h>
-#include <stdbool.h>
#include <errno.h>
-#include <sys/ioctl.h> /* for O_RDWR */
#include <setjmp.h>
#include "gpsd_config.h"
@@ -42,7 +33,6 @@
#endif /* HAVE_NCURSES_H */
#include "gpsd.h"
-#include "bits.h"
#if defined(HAVE_SYS_TIME_H)
#include <sys/time.h>