summaryrefslogtreecommitdiff
path: root/Tachometer.h
diff options
context:
space:
mode:
authorChris Kuethe <chris.kuethe@gmail.com>2008-08-03 16:42:57 +0000
committerChris Kuethe <chris.kuethe@gmail.com>2008-08-03 16:42:57 +0000
commitf5e46a580df6fbf49f804d9b32c61abdfe4cf898 (patch)
treefd30dcc21493a7ddb14b648303167381308f6cd7 /Tachometer.h
parent3ca39fe6c88d372412a6f1812568c42f4abe3ff9 (diff)
downloadgpsd-f5e46a580df6fbf49f804d9b32c61abdfe4cf898.tar.gz
Unify the header protection macro style a bit.
Headers likely to be private to gpsd are prefixed with _GPSD_, reusable ones like crc24q.h don't get the _GPSD_ prefix. Protection macro goes right up near the top of the file, right after the SVN id, and it's closure is the last line of the file.
Diffstat (limited to 'Tachometer.h')
-rw-r--r--Tachometer.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/Tachometer.h b/Tachometer.h
index 0783c047..dc77dd83 100644
--- a/Tachometer.h
+++ b/Tachometer.h
@@ -1,8 +1,8 @@
/* $Id$ */
-/* Tachometer.h -- tachometer widget interface */
-#ifndef _Tachometer_h
-#define _Tachometer_h
+#ifndef _GPSD_TACHOMETER_H_
+#define _GPSD_TACHOMETER_H_
+/* Tachometer.h -- tachometer widget interface */
#include <X11/Xaw/Simple.h>
/* Resources:
@@ -46,4 +46,4 @@ extern WidgetClass tachometerWidgetClass;
typedef struct _TachometerClassRec *TachometerWidgetClass;
typedef struct _TachometerRec *TachometerWidget;
-#endif /* _Tachometer_h */
+#endif /* _GPSD_TACHOMETER_H_ */