diff options
author | Kazu Hirata <kazu@codesourcery.com> | 2000-09-12 20:57:14 +0000 |
---|---|---|
committer | Kazu Hirata <kazu@codesourcery.com> | 2000-09-12 20:57:14 +0000 |
commit | a01b9fa4ba5e6f9ce35d7ff0a1dfd18f94da20b5 (patch) | |
tree | 522c23c55cd2509994652e7a47544ad9673155ff /gas/read.h | |
parent | 3c06a63b37672469ce077f24d5eca2818d7c91b8 (diff) | |
download | gdb-a01b9fa4ba5e6f9ce35d7ff0a1dfd18f94da20b5.zip gdb-a01b9fa4ba5e6f9ce35d7ff0a1dfd18f94da20b5.tar.gz gdb-a01b9fa4ba5e6f9ce35d7ff0a1dfd18f94da20b5.tar.bz2 |
2000-09-12 Kazu Hirata <kazu@hxi.com>
* as.h: Fix formatting.
* asintl.h: Likewise.
* bit_fix.h: Likewise.
* dwarf2dbg.h: Likewise.
* expr.h: Likewise.
* flonum.h: Likewise.
* frags.h: Likewise.
* itbl-ops.h: Likewise.
* macro.h: Likewise.
* read.h: Likewise.
* sb.h: Likewise.
* struc-symbol.h: Likewise.
* subsegs.h: Likewise.
* symbols.h: Likewise.
* tc.h: Likewise.
* write.h: Likewise.
Diffstat (limited to 'gas/read.h')
-rw-r--r-- | gas/read.h | 11 |
1 files changed, 4 insertions, 7 deletions
@@ -1,5 +1,5 @@ /* read.h - of read.c - Copyright (C) 1986, 90, 92, 93, 94, 95, 96, 1997 + Copyright (C) 1986, 90, 92, 93, 94, 95, 96, 97, 2000 Free Software Foundation, Inc. This file is part of GAS, the GNU Assembler. @@ -18,12 +18,12 @@ along with GAS; see the file COPYING. If not, write to the Free Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ -extern char *input_line_pointer;/* -> char we are parsing now. */ +extern char *input_line_pointer;/* -> char we are parsing now. */ #define PERMIT_WHITESPACE /* Define to make whitespace be allowed in */ -/* many syntactically unnecessary places. */ +/* many syntactically unnecessary places. */ /* Normally undefined. For compatibility */ -/* with ancient GNU cc. */ +/* with ancient GNU cc. */ /* #undef PERMIT_WHITESPACE */ #ifdef PERMIT_WHITESPACE @@ -32,7 +32,6 @@ extern char *input_line_pointer;/* -> char we are parsing now. */ #define SKIP_WHITESPACE() know(*input_line_pointer != ' ' ) #endif - #define LEX_NAME (1) /* may continue a name */ #define LEX_BEGIN_NAME (2) /* may begin a name */ #define LEX_END_NAME (4) /* ends a name */ @@ -169,5 +168,3 @@ extern void s_text PARAMS ((int)); extern void stringer PARAMS ((int append_zero)); extern void s_xstab PARAMS ((int what)); extern void s_rva PARAMS ((int)); - -/* end of read.h */ |