diff options
author | Mark G. Adams <mark.g.adams@sympatico.ca> | 2004-06-25 15:01:35 +0000 |
---|---|---|
committer | Mark G. Adams <mgadams@gcc.gnu.org> | 2004-06-25 15:01:35 +0000 |
commit | efaa45e648f2955a132089c7ca4bd0c3092ff000 (patch) | |
tree | 8c9d55ee21a4e0161110c437afee1584cd4bb95a /gcc | |
parent | 07e938fc863ee4cec163cb9290476274242ca68d (diff) | |
download | gcc-efaa45e648f2955a132089c7ca4bd0c3092ff000.zip gcc-efaa45e648f2955a132089c7ca4bd0c3092ff000.tar.gz gcc-efaa45e648f2955a132089c7ca4bd0c3092ff000.tar.bz2 |
* dbxout.h: Add include guards
From-SVN: r83653
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/ChangeLog | 4 | ||||
-rw-r--r-- | gcc/dbxout.h | 7 |
2 files changed, 10 insertions, 1 deletions
diff --git a/gcc/ChangeLog b/gcc/ChangeLog index e1bdcb7..4083a67 100644 --- a/gcc/ChangeLog +++ b/gcc/ChangeLog @@ -1,3 +1,7 @@ +2004-06-25 Mark G. Adams <mark.g.adams@sympatico.ca> + + * dbxout.h: Add include guards + 2004-06-25 Paul Brook <paul@codesourcery.com> * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Define __ARM_EABI__. diff --git a/gcc/dbxout.h b/gcc/dbxout.h index bf0e741..1d3a292 100644 --- a/gcc/dbxout.h +++ b/gcc/dbxout.h @@ -1,5 +1,5 @@ /* dbxout.h - Various declarations for functions found in dbxout.c - Copyright (C) 1998, 1999, 2000, 2003 + Copyright (C) 1998, 1999, 2000, 2003, 2004 Free Software Foundation, Inc. This file is part of GCC. @@ -19,7 +19,12 @@ along with GCC; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ +#ifndef GCC_DBXOUT_H +#define GCC_DBXOUT_H + extern int dbxout_symbol (tree, int); extern void dbxout_parms (tree); extern void dbxout_reg_parms (tree); extern int dbxout_syms (tree); + +#endif /* GCC_DBXOUT_H */ |