diff options
author | mgadams <mgadams@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-25 15:01:35 +0000 |
---|---|---|
committer | mgadams <mgadams@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-06-25 15:01:35 +0000 |
commit | 039260fc5b03011f4c987442c528a1d674166c97 (patch) | |
tree | 8c9d55ee21a4e0161110c437afee1584cd4bb95a /gcc/dbxout.h | |
parent | ca9692e16c7a62bf57f5004ee110e0bd3c3358e5 (diff) | |
download | gcc-039260fc5b03011f4c987442c528a1d674166c97.tar.gz |
* dbxout.h: Add include guards
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@83653 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.h')
-rw-r--r-- | gcc/dbxout.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gcc/dbxout.h b/gcc/dbxout.h index bf0e741fe45..1d3a2927cea 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 */ |