diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-11-09 23:12:52 -0800 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-11-15 00:38:26 -0500 |
commit | c4d4ed40834de8e2b493f83cf15291f2d2e38c6f (patch) | |
tree | 41a60a31ed024349fcc54632b879111612789123 /include/gdb/sim-sh.h | |
parent | d8bd95efd8119e06e6753c841f1bbc54bb09d5de (diff) | |
download | gdb-c4d4ed40834de8e2b493f83cf15291f2d2e38c6f.zip gdb-c4d4ed40834de8e2b493f83cf15291f2d2e38c6f.tar.gz gdb-c4d4ed40834de8e2b493f83cf15291f2d2e38c6f.tar.bz2 |
sim: drop extern C linkage from most sim interface headers
Since these headers merely have enum's, drop the extern C linkage
markings. Helps to reduce the copy & paste spam.
Diffstat (limited to 'include/gdb/sim-sh.h')
-rw-r--r-- | include/gdb/sim-sh.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/include/gdb/sim-sh.h b/include/gdb/sim-sh.h index fc42212..e11d0b5 100644 --- a/include/gdb/sim-sh.h +++ b/include/gdb/sim-sh.h @@ -19,10 +19,6 @@ #if !defined (SIM_SH_H) #define SIM_SH_H -#ifdef __cplusplus -extern "C" { // } -#endif - /* The simulator makes use of the following register information. */ enum @@ -162,8 +158,4 @@ enum SIM_SH64_NR_FP_REGS = 64 /* number of floating point registers */ }; -#ifdef __cplusplus -} -#endif - #endif |