diff options
author | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-26 01:31:47 +0000 |
---|---|---|
committer | rth <rth@138bc75d-0d04-0410-961f-82ee72b054a4> | 2001-05-26 01:31:47 +0000 |
commit | 2a28135353b97956c0ad51a9fe00868f24458a06 (patch) | |
tree | a63afad955af14544b1903785b68f16116173e26 /gcc/mkdeps.h | |
parent | 71c7d83c059c87adffe5407c1d7c6ab58fa7d5ec (diff) | |
download | gcc-2a28135353b97956c0ad51a9fe00868f24458a06.tar.gz |
Standardize header guards.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@42615 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/mkdeps.h')
-rw-r--r-- | gcc/mkdeps.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/mkdeps.h b/gcc/mkdeps.h index 2484af18f3e..fa79b86591b 100644 --- a/gcc/mkdeps.h +++ b/gcc/mkdeps.h @@ -20,8 +20,8 @@ Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. You are forbidden to forbid anyone else to use, share and improve what you give them. Help stamp out software-hoarding! */ -#ifndef __GCC_MKDEPS__ -#define __GCC_MKDEPS__ +#ifndef GCC_MKDEPS_H +#define GCC_MKDEPS_H /* This is the data structure used by all the functions in mkdeps.c. It's quite straightforward, but should be treated as opaque. */ @@ -59,4 +59,4 @@ extern void deps_write PARAMS ((const struct deps *, FILE *, automatic dependency schemes. */ extern void deps_phony_targets PARAMS ((const struct deps *, FILE *)); -#endif +#endif /* ! GCC_MKDEPS_H */ |