]> git.mxchange.org Git - flightgear.git/commitdiff
Changed #ifdef FILE_H to #ifdef _FILE_H
authorcurt <curt>
Thu, 22 Jan 1998 02:59:35 +0000 (02:59 +0000)
committercurt <curt>
Thu, 22 Jan 1998 02:59:35 +0000 (02:59 +0000)
constants.h
general.h
limits.h
types.h

index 6a791ad0a27ab75edcb811c9d0f242bca538ea36..c3a2ce3b8dfe5c8907787c4e5b043dbc23dfef56 100644 (file)
@@ -24,8 +24,8 @@
  **************************************************************************/
 
 
-#ifndef CONSTANTS_H
-#define CONSTANTS_H
+#ifndef _CONSTANTS_H
+#define _CONSTANTS_H
 
 
 #include <math.h>
 #define DEFAULT_MODEL_HZ (DEFAULT_TIMER_HZ * DEFAULT_MULTILOOP)
 
 
-#endif /* CONSTANTS_H */
+#endif /* _CONSTANTS_H */
 
 
 /* $Log$
-/* Revision 1.2  1998/01/07 03:31:26  curt
-/* Miscellaneous tweaks.
+/* Revision 1.3  1998/01/22 02:59:35  curt
+/* Changed #ifdef FILE_H to #ifdef _FILE_H
 /*
+ * Revision 1.2  1998/01/07 03:31:26  curt
+ * Miscellaneous tweaks.
+ *
  * Revision 1.1  1997/12/15 21:02:15  curt
  * Moved to .../FlightGear/Src/Include/
  *
index a1538ff00ffd5af1972ce4bb6a3015e0238b2bc7..15b1ae00ad7f3e68e2d2d0b48073d389622de727 100644 (file)
--- a/general.h
+++ b/general.h
@@ -26,8 +26,8 @@
  **************************************************************************/
 
 
-#ifndef GENERAL_H
-#define GENERAL_H
+#ifndef _GENERAL_H
+#define _GENERAL_H
 
 
 /* the general house keeping structure definition */
@@ -39,13 +39,16 @@ struct fgGENERAL {
 /* general contains all the general house keeping parameters. */
 extern struct fgGENERAL general;
 
-#endif /* GENERAL_H */
+#endif /* _GENERAL_H */
 
 
 /* $Log$
-/* Revision 1.1  1997/12/15 21:02:16  curt
-/* Moved to .../FlightGear/Src/Include/
+/* Revision 1.2  1998/01/22 02:59:35  curt
+/* Changed #ifdef FILE_H to #ifdef _FILE_H
 /*
+ * Revision 1.1  1997/12/15 21:02:16  curt
+ * Moved to .../FlightGear/Src/Include/
+ *
  * Revision 1.3  1997/12/10 22:37:34  curt
  * Prepended "fg" on the name of all global structures that didn't have it yet.
  * i.e. "struct WEATHER {}" became "struct fgWEATHER {}"
index d7d6b10a3304162c45894fcb5dc30f79c83cb78e..9387c77ae0b9c7b3eafbf7fe43f6c8b6d13b0d57 100644 (file)
--- a/limits.h
+++ b/limits.h
  **************************************************************************/
 
 
-#ifndef LIMITS_H
-#define LIMITS_H
+#ifndef _LIMITS_H
+#define _LIMITS_H
 
 
 /* Maximum number of engines for a single aircraft */
 #define FG_MAX_ENGINES 10
 
 
-#endif /* LIMITS_H */
+#endif /* _LIMITS_H */
 
 
 /* $Log$
-/* Revision 1.1  1997/12/15 21:02:16  curt
-/* Moved to .../FlightGear/Src/Include/
+/* Revision 1.2  1998/01/22 02:59:35  curt
+/* Changed #ifdef FILE_H to #ifdef _FILE_H
 /*
+ * Revision 1.1  1997/12/15 21:02:16  curt
+ * Moved to .../FlightGear/Src/Include/
+ *
  * Revision 1.4  1997/07/23 21:52:11  curt
  * Put comments around the text after an #endif for increased portability.
  *
diff --git a/types.h b/types.h
index 9e8bfa2a34f8b9a274aaabe3e396d6f308612e4f..e358c278cd2338554cdeb986c187e165a0cb822d 100644 (file)
--- a/types.h
+++ b/types.h
@@ -24,8 +24,8 @@
  **************************************************************************/
 
 
-#ifndef TYPES_H
-#define TYPES_H
+#ifndef _TYPES_H
+#define _TYPES_H
 
 
 /* A simple cartesian point */
@@ -40,13 +40,16 @@ struct fgGeodeticPoint {
 };
 
 
-#endif /* TYPES_H */
+#endif /* _TYPES_H */
 
 
 /* $Log$
-/* Revision 1.1  1997/12/15 21:02:17  curt
-/* Moved to .../FlightGear/Src/Include/
+/* Revision 1.2  1998/01/22 02:59:36  curt
+/* Changed #ifdef FILE_H to #ifdef _FILE_H
 /*
+ * Revision 1.1  1997/12/15 21:02:17  curt
+ * Moved to .../FlightGear/Src/Include/
+ *
  * Revision 1.2  1997/07/23 21:52:12  curt
  * Put comments around the text after an #endif for increased portability.
  *