summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--bits.c1
-rw-r--r--driver_garmin_txt.c1
-rw-r--r--driver_navcom.c1
-rw-r--r--driver_rtcm3.c1
-rw-r--r--gpsdclient.h4
-rw-r--r--gpsmon.h5
-rw-r--r--lcdgps.c4
-rw-r--r--monitor_nmea.c1
-rw-r--r--monitor_proto.c1
-rw-r--r--test_mkgmtime.c1
10 files changed, 18 insertions, 2 deletions
diff --git a/bits.c b/bits.c
index ae614e2b..8530c8c6 100644
--- a/bits.c
+++ b/bits.c
@@ -1,3 +1,4 @@
+/* $Id$ */
/*
* Bitfield extraction functions. In each, start is a bit index (not a byte
* index) and width is a bit width (bounded above by the bit width of long
diff --git a/driver_garmin_txt.c b/driver_garmin_txt.c
index ecd13aac..13f958b3 100644
--- a/driver_garmin_txt.c
+++ b/driver_garmin_txt.c
@@ -1,3 +1,4 @@
+/* $Id$ */
/*
* Handle the Garmin simple text format supported by some Garmins.
* Tested with the Garmin eTrex Legend.
diff --git a/driver_navcom.c b/driver_navcom.c
index b24b39aa..808a37eb 100644
--- a/driver_navcom.c
+++ b/driver_navcom.c
@@ -1,3 +1,4 @@
+/* $Id$ */
/*
* Driver for Navcom receivers using propietary NCT messages, a binary protocol.
*
diff --git a/driver_rtcm3.c b/driver_rtcm3.c
index 807816de..4b084497 100644
--- a/driver_rtcm3.c
+++ b/driver_rtcm3.c
@@ -1,3 +1,4 @@
+/* $Id$ */
/*****************************************************************************
This is a decoder for RTCM-104 3.x, a serial protocol used for
diff --git a/gpsdclient.h b/gpsdclient.h
index ccd61a2a..63fe0f16 100644
--- a/gpsdclient.h
+++ b/gpsdclient.h
@@ -1,5 +1,8 @@
+/* $Id$ */
/* gpsdclient.h -- common functions for GPSD clients */
+#ifndef _GPSD_GPSDCLIENT_H_
+#define _GPSD_GPSDCLIENT_H_
struct fixsource_t
/* describe a data source */
{
@@ -18,4 +21,5 @@ extern /*@observer@*/ char *deg_to_str( enum deg_str_type type, double f);
extern void gpsd_source_spec(/*@null@*/const char *fromstring,
/*@out@*/struct fixsource_t *source);
+#endif /* _GPSDCLIENT_H_ */
/* gpsdclient.h ends here */
diff --git a/gpsmon.h b/gpsmon.h
index ccf7c69b..37c95a72 100644
--- a/gpsmon.h
+++ b/gpsmon.h
@@ -1,5 +1,9 @@
+/* $Id$ */
/* gpsmon.h -- what monitor capabuilities look like */
+#ifndef _GPSD_GPSMON_H_
+#define _GPSD_GPSMON_H_
+
#define COMMAND_TERMINATE -1
#define COMMAND_MATCH 1
#define COMMAND_UNKNOWN 0
@@ -25,4 +29,5 @@ extern WINDOW *devicewin, *packetwin;
extern struct gps_device_t session;
extern int gmt_offset;
+#endif /* _GPSD_GPSMON_H_ */
/* gpsmon.h ends here */
diff --git a/lcdgps.c b/lcdgps.c
index c92ae9d9..1d9555d1 100644
--- a/lcdgps.c
+++ b/lcdgps.c
@@ -1,3 +1,4 @@
+/* $Id$ */
/*
* Copyright (c) 2005 Jeff Francis <jeff@gritch.org>
*
@@ -17,7 +18,6 @@
/*
Jeff Francis
jeff@gritch.org
- $Id:$
A client that passes gpsd data to lcdproc, turning your car computer
into a very expensive feature-free GPS receiver ;^). Currently
@@ -360,7 +360,7 @@ int main(int argc, char *argv[])
while ((option = getopt(argc, argv, "Vhjl:su:")) != -1) {
switch (option) {
case 'V':
- (void)fprintf(stderr, "$Id:$\n");
+ (void)fprintf(stderr, "$Id$\n");
exit(0);
case 'h':
default:
diff --git a/monitor_nmea.c b/monitor_nmea.c
index 24c4b9f1..fd62ded1 100644
--- a/monitor_nmea.c
+++ b/monitor_nmea.c
@@ -1,3 +1,4 @@
+/* $Id$ */
/*
* nmeamon.c - gpsmon support for NMEA devices.
*
diff --git a/monitor_proto.c b/monitor_proto.c
index 50bf6b12..c1b031c8 100644
--- a/monitor_proto.c
+++ b/monitor_proto.c
@@ -1,3 +1,4 @@
+/* $Id$ */
/*
* Prototype file for a gpsmon monitor object.
*/
diff --git a/test_mkgmtime.c b/test_mkgmtime.c
index 2365cc9a..8dd75955 100644
--- a/test_mkgmtime.c
+++ b/test_mkgmtime.c
@@ -1,3 +1,4 @@
+/* $Id$ */
#include <time.h>
#include <stdio.h>
#include <stdlib.h>