diff options
author | Tom Tromey <tom@tromey.com> | 2023-11-06 09:31:03 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2023-11-06 20:31:12 -0700 |
commit | cf0d07fd07117934750e4bb94cfc0349e251afae (patch) | |
tree | 65c293cdc7e8b9e1b4a8c9926bde010f34678403 /gdb/utils.c | |
parent | e0da5ef09c56eec9cffee9683a6258998802a428 (diff) | |
download | gdb-cf0d07fd07117934750e4bb94cfc0349e251afae.zip gdb-cf0d07fd07117934750e4bb94cfc0349e251afae.tar.gz gdb-cf0d07fd07117934750e4bb94cfc0349e251afae.tar.bz2 |
Remove EXTERN_C and related defines
common-defs.h has a few defines that I suspect were used during the
transition to C++. These aren't needed any more, so remove them.
Tested by rebuilding.
Approved-By: Simon Marchi <simon.marchi@efficios.com>
Approved-By: Andrew Burgess <aburgess@redhat.com>
Diffstat (limited to 'gdb/utils.c')
-rw-r--r-- | gdb/utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/utils.c b/gdb/utils.c index a191d26..f959af3 100644 --- a/gdb/utils.c +++ b/gdb/utils.c @@ -1112,7 +1112,7 @@ static bool filter_initialized = false; /* See readline's rlprivate.h. */ -EXTERN_C int _rl_term_autowrap; +extern "C" int _rl_term_autowrap; /* See utils.h. */ |