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-h8300.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-h8300.h')
-rw-r--r-- | include/gdb/sim-h8300.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/include/gdb/sim-h8300.h b/include/gdb/sim-h8300.h index 2821433..e0405d3 100644 --- a/include/gdb/sim-h8300.h +++ b/include/gdb/sim-h8300.h @@ -19,13 +19,9 @@ #if !defined (SIM_H8300_H) #define SIM_H8300_H -#ifdef __cplusplus -extern "C" { //} -#endif - /* The simulator makes use of the following register information. */ - enum sim_h8300_regs +enum sim_h8300_regs { /* Registers common to all the H8 variants. */ /* Start here: */ @@ -52,7 +48,7 @@ extern "C" { //} SIM_H8300_TICK_REGNUM }; - enum +enum { SIM_H8300_ARG_FIRST_REGNUM = SIM_H8300_R0_REGNUM, /* first reg in which an arg may be passed */ @@ -63,15 +59,11 @@ extern "C" { //} SIM_H8300_SP_REGNUM = SIM_H8300_R7_REGNUM /* Contains address of top of stack */ }; - enum +enum { SIM_H8300_NUM_COMMON_REGS = 10, SIM_H8300_S_NUM_REGS = 13, SIM_H8300_NUM_REGS = 16 }; -#ifdef __cplusplus -} -#endif - #endif /* SIM_H8300_H */ |