Changed #ifdef FILE_H to #ifdef _FILE_H
This commit is contained in:
parent
f1312a7c66
commit
9cd2769705
4 changed files with 32 additions and 20 deletions
13
constants.h
13
constants.h
|
@ -24,8 +24,8 @@
|
|||
**************************************************************************/
|
||||
|
||||
|
||||
#ifndef CONSTANTS_H
|
||||
#define CONSTANTS_H
|
||||
#ifndef _CONSTANTS_H
|
||||
#define _CONSTANTS_H
|
||||
|
||||
|
||||
#include <math.h>
|
||||
|
@ -118,13 +118,16 @@
|
|||
#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/
|
||||
*
|
||||
|
|
13
general.h
13
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 {}"
|
||||
|
|
13
limits.h
13
limits.h
|
@ -24,21 +24,24 @@
|
|||
**************************************************************************/
|
||||
|
||||
|
||||
#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.
|
||||
*
|
||||
|
|
13
types.h
13
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.
|
||||
*
|
||||
|
|
Loading…
Add table
Reference in a new issue