diff options
author | Tom Wood <wood@gnu.org> | 1992-10-29 10:50:35 +0000 |
---|---|---|
committer | Tom Wood <wood@gnu.org> | 1992-10-29 10:50:35 +0000 |
commit | e316696427df248b2e678edb6e2e1d26f8754129 (patch) | |
tree | 19662c4f820e0b7712f990c235d53eb629ddf222 | |
parent | 5056af6e784e0c14d5e5a986a23a27a0712be662 (diff) | |
download | gcc-e316696427df248b2e678edb6e2e1d26f8754129.zip gcc-e316696427df248b2e678edb6e2e1d26f8754129.tar.gz gcc-e316696427df248b2e678edb6e2e1d26f8754129.tar.bz2 |
Include "assert.h" instead of <assert.h>.
From-SVN: r2647
-rw-r--r-- | gcc/config/arm/arm.c | 2 | ||||
-rw-r--r-- | gcc/config/m88k/m88k.c | 4 | ||||
-rw-r--r-- | gcc/dwarfout.c | 2 |
3 files changed, 4 insertions, 4 deletions
diff --git a/gcc/config/arm/arm.c b/gcc/config/arm/arm.c index 58908c4..75a91af 100644 --- a/gcc/config/arm/arm.c +++ b/gcc/config/arm/arm.c @@ -20,7 +20,7 @@ along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <stdio.h> -#include <assert.h> +#include "assert.h" #include "config.h" #include "rtl.h" #include "regs.h" diff --git a/gcc/config/m88k/m88k.c b/gcc/config/m88k/m88k.c index 3c8fea6..6b52b9f 100644 --- a/gcc/config/m88k/m88k.c +++ b/gcc/config/m88k/m88k.c @@ -21,11 +21,11 @@ along with GNU CC; see the file COPYING. If not, write to the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include <stdio.h> -#include <assert.h> #include <sys/types.h> #include <time.h> #include <ctype.h> +#include "assert.h" #include "config.h" #include "rtl.h" #include "regs.h" @@ -47,7 +47,7 @@ extern char *ctime (); extern int flag_traditional; extern FILE *asm_out_file; -static char out_sccs_id[] = "@(#)m88k.c 2.2.14.3 10/28/92 15:20:54"; +static char out_sccs_id[] = "@(#)m88k.c 2.2.14.4 10/29/92 05:37:46"; static char tm_sccs_id [] = TM_SCCS_ID; char *m88k_pound_sign = ""; /* Either # for SVR4 or empty for SVR3 */ diff --git a/gcc/dwarfout.c b/gcc/dwarfout.c index 722fff5..e8b70fc 100644 --- a/gcc/dwarfout.c +++ b/gcc/dwarfout.c @@ -39,7 +39,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #endif /* #define NDEBUG 1 */ -#include <assert.h> +#include "assert.h" #if defined(DWARF_TIMESTAMPS) #if defined(POSIX) |