diff options
Diffstat (limited to 'gdb/cplus-dem.c')
-rw-r--r-- | gdb/cplus-dem.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/gdb/cplus-dem.c b/gdb/cplus-dem.c index 95c4529..cbb79c4 100644 --- a/gdb/cplus-dem.c +++ b/gdb/cplus-dem.c @@ -54,13 +54,6 @@ /* define this if names don't start with _ */ /* #define nounderscore 1 */ -/* This is '$' on systems where the assembler can deal with that. - Where the assembler can't, it's '.' (but on many systems '.' is - used for other things). */ -#if !defined (CPLUS_MARKER) -#define CPLUS_MARKER '$' -#endif - #include <stdio.h> #include <ctype.h> @@ -79,6 +72,13 @@ #define strrchr rindex #endif +/* This is '$' on systems where the assembler can deal with that. + Where the assembler can't, it's '.' (but on many systems '.' is + used for other things). */ +#if !defined (CPLUS_MARKER) +#define CPLUS_MARKER '$' +#endif + #ifndef __STDC__ #define const #endif |