diff options
Diffstat (limited to 'gmon')
-rw-r--r-- | gmon/sys/gmon.h | 6 | ||||
-rw-r--r-- | gmon/sys/gmon_out.h | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/gmon/sys/gmon.h b/gmon/sys/gmon.h index d963797cd2..2eff69b01c 100644 --- a/gmon/sys/gmon.h +++ b/gmon/sys/gmon.h @@ -33,9 +33,9 @@ * @(#)gmon.h 8.2 (Berkeley) 1/4/94 */ -#ifndef _SYS_GMON_H_ +#ifndef _SYS_GMON_H +#define _SYS_GMON_H 1 -#define _SYS_GMON_H_ 1 #include <features.h> #include <sys/types.h> @@ -176,4 +176,4 @@ void _mcleanup __P ((void)); __END_DECLS -#endif /* !_SYS_GMON_H_ */ +#endif /* sys/gmon.h */ diff --git a/gmon/sys/gmon_out.h b/gmon/sys/gmon_out.h index 36059cc572..bb80a1a16f 100644 --- a/gmon/sys/gmon_out.h +++ b/gmon/sys/gmon_out.h @@ -26,8 +26,8 @@ identifying the type of records, followed by records specific data. */ #ifndef _SYS_GMON_OUT_H - #define _SYS_GMON_OUT_H 1 + #include <features.h> #define GMON_MAGIC "gmon" /* magic cookie */ @@ -74,4 +74,4 @@ struct gmon_cg_arc_record __END_DECLS -#endif /* _SYS_GMON_OUT_H */ +#endif /* sys/gmon_out.h */ |