diff options
author | Daniel Jacobowitz <drow@false.org> | 2002-10-30 03:56:39 +0000 |
---|---|---|
committer | Daniel Jacobowitz <drow@false.org> | 2002-10-30 03:56:39 +0000 |
commit | 3d82a647caf046b27712df3bffe1492736dbc12a (patch) | |
tree | 25292e443347544e6448e5b2919e11843977eacd | |
parent | 8ffbbda4080023ce3180475e8c9ee0bdfe54d7ba (diff) | |
download | binutils-gdb-3d82a647caf046b27712df3bffe1492736dbc12a.tar.gz |
* itbl-lex.l: Use #include <> for generated headers.
* itbl-ops.c: Likewise.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/itbl-lex.l | 3 | ||||
-rw-r--r-- | gas/itbl-ops.c | 2 |
3 files changed, 8 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index ffec7dba796..b32d0571aae 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,8 @@ +2002-10-29 Daniel Jacobowitz <drow@mvista.com> + + * itbl-lex.l: Use #include <> for generated headers. + * itbl-ops.c: Likewise. + 2002-10-28 Daniel Jacobowitz <drow@mvista.com> * doc/gasp.texi: Fix typo in deprecation note. diff --git a/gas/itbl-lex.l b/gas/itbl-lex.l index ed0be641fc4..e924efc56ef 100644 --- a/gas/itbl-lex.l +++ b/gas/itbl-lex.l @@ -22,7 +22,8 @@ #include <stdio.h> #include <string.h> #include <stdlib.h> -#include "itbl-parse.h" + +#include <itbl-parse.h> #ifdef DEBUG #define DBG(x) printf x diff --git a/gas/itbl-ops.c b/gas/itbl-ops.c index d67a9869e5b..09db9f74683 100644 --- a/gas/itbl-ops.c +++ b/gas/itbl-ops.c @@ -92,7 +92,7 @@ #include <stdlib.h> #include <string.h> #include "itbl-ops.h" -#include "itbl-parse.h" +#include <itbl-parse.h> /* #define DEBUG */ |