diff options
author | Alan Modra <amodra@gmail.com> | 2002-06-08 07:39:45 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2002-06-08 07:39:45 +0000 |
commit | 4da711b14026562389029483a14b497f2d951522 (patch) | |
tree | 809e615348a39aa8c3a9135eccd8e4f7e5b83433 /ld/ldexp.c | |
parent | b1f88ebebf2f43710223a81747ee7d8504e94b47 (diff) | |
download | gdb-4da711b14026562389029483a14b497f2d951522.zip gdb-4da711b14026562389029483a14b497f2d951522.tar.gz gdb-4da711b14026562389029483a14b497f2d951522.tar.bz2 |
* ldexp.c: Replace CONST with const.
* ldfile.c: Likewise.
* ldfile.h: Likewise.
* ldlex.l: Likewise.
* mri.c: Likewise.
* pe-dll.h: Likewise.
Diffstat (limited to 'ld/ldexp.c')
-rw-r--r-- | ld/ldexp.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -75,7 +75,7 @@ exp_print_token (code, infix_p) token_code_type code; int infix_p; { - static CONST struct + static const struct { token_code_type code; char * name; @@ -852,7 +852,7 @@ exp_unop (code, child) etree_type * exp_nameop (code, name) int code; - CONST char *name; + const char *name; { etree_type value, *new; etree_value_type r; @@ -875,7 +875,7 @@ exp_nameop (code, name) etree_type * exp_assop (code, dst, src) int code; - CONST char *dst; + const char *dst; etree_type *src; { etree_type value, *new; |