aboutsummaryrefslogtreecommitdiff
path: root/gcc/fixinc
diff options
context:
space:
mode:
authorRichard Henderson <rth@gcc.gnu.org>2001-05-25 18:31:47 -0700
committerRichard Henderson <rth@gcc.gnu.org>2001-05-25 18:31:47 -0700
commit88657302b711baa2b317b2bb91c93d0a03e16b36 (patch)
treea63afad955af14544b1903785b68f16116173e26 /gcc/fixinc
parentf811f821d511e7d03dbca9cd645d03bc721b92a2 (diff)
downloadgcc-88657302b711baa2b317b2bb91c93d0a03e16b36.zip
gcc-88657302b711baa2b317b2bb91c93d0a03e16b36.tar.gz
gcc-88657302b711baa2b317b2bb91c93d0a03e16b36.tar.bz2
Standardize header guards.
From-SVN: r42615
Diffstat (limited to 'gcc/fixinc')
-rw-r--r--gcc/fixinc/fixlib.h6
-rw-r--r--gcc/fixinc/server.h7
2 files changed, 7 insertions, 6 deletions
diff --git a/gcc/fixinc/fixlib.h b/gcc/fixinc/fixlib.h
index e42c43d..6bcc6e2 100644
--- a/gcc/fixinc/fixlib.h
+++ b/gcc/fixinc/fixlib.h
@@ -22,8 +22,8 @@ along with GNU CC; see the file COPYING. If not, write to
the Free Software Foundation, 59 Temple Place - Suite 330,
Boston, MA 02111-1307, USA. */
-#ifndef FIXINCLUDES_FIXLIB_H
-#define FIXINCLUDES_FIXLIB_H
+#ifndef GCC_FIXLIB_H
+#define GCC_FIXLIB_H
#include "auto-host.h"
#include "ansidecl.h"
@@ -224,4 +224,4 @@ void mn_get_regexps
PARAMS(( regex_t** label_re, regex_t** name_re,
tCC *who ));
#endif
-#endif /* FIXINCLUDES_FIXLIB_H */
+#endif /* ! GCC_FIXLIB_H */
diff --git a/gcc/fixinc/server.h b/gcc/fixinc/server.h
index c3ed6c7..c27a51e 100644
--- a/gcc/fixinc/server.h
+++ b/gcc/fixinc/server.h
@@ -46,8 +46,8 @@
* If you do not wish that, delete this exception notice.
*/
-#ifndef FIXINC_SERVER_H
-#define FIXINC_SERVER_H
+#ifndef GCC_SERVER_H
+#define GCC_SERVER_H
#include <stdio.h>
#ifdef HAVE_UNISTD_H
@@ -78,4 +78,5 @@ pid_t proc2_open PARAMS (( t_fd_pair * p_pair, tCC ** pp_args));
int chain_open PARAMS (( int in_fd, tCC ** pp_args,
pid_t * p_child));
void close_server PARAMS (( void ));
-#endif /* FIXINC_SERVER_H */
+
+#endif /* ! GCC_SERVER_H */