diff options
author | Mike Frysinger <vapier@gentoo.org> | 2011-03-15 20:44:11 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2011-03-15 20:44:11 +0000 |
commit | 990d19fd6d925da5856de50fd84d8656e762b83c (patch) | |
tree | 78a21bfb29c4d0d4f10900714b098fb437695125 /sim/bfin/linux-targ-map.h | |
parent | 227d265839dcb5f90383a23e36dc7d0a5df62075 (diff) | |
download | gdb-990d19fd6d925da5856de50fd84d8656e762b83c.zip gdb-990d19fd6d925da5856de50fd84d8656e762b83c.tar.gz gdb-990d19fd6d925da5856de50fd84d8656e762b83c.tar.bz2 |
sim: bfin: fix brace style
Diffstat (limited to 'sim/bfin/linux-targ-map.h')
-rw-r--r-- | sim/bfin/linux-targ-map.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sim/bfin/linux-targ-map.h b/sim/bfin/linux-targ-map.h index ca340d5..be60fec 100644 --- a/sim/bfin/linux-targ-map.h +++ b/sim/bfin/linux-targ-map.h @@ -39,7 +39,8 @@ exit 0 */ #endif -static CB_TARGET_DEFS_MAP cb_linux_syscall_map[] = { +static CB_TARGET_DEFS_MAP cb_linux_syscall_map[] = +{ #ifdef CB_SYS_restart_syscall # define TARGET_LINUX_SYS_restart_syscall 0 { CB_SYS_restart_syscall, TARGET_LINUX_SYS_restart_syscall }, @@ -1283,7 +1284,8 @@ static CB_TARGET_DEFS_MAP cb_linux_syscall_map[] = { { -1, -1 } }; -static CB_TARGET_DEFS_MAP cb_linux_errno_map[] = { +static CB_TARGET_DEFS_MAP cb_linux_errno_map[] = +{ #ifdef EPERM # define TARGET_LINUX_EPERM 1 { EPERM, TARGET_LINUX_EPERM }, @@ -1787,7 +1789,8 @@ static CB_TARGET_DEFS_MAP cb_linux_errno_map[] = { { 0, 0 } }; -static CB_TARGET_DEFS_MAP cb_linux_open_map[] = { +static CB_TARGET_DEFS_MAP cb_linux_open_map[] = +{ #ifdef O_ACCMODE # define TARGET_LINUX_O_ACCMODE 0003 { O_ACCMODE, TARGET_LINUX_O_ACCMODE }, @@ -1839,7 +1842,8 @@ static CB_TARGET_DEFS_MAP cb_linux_open_map[] = { { -1, -1 } }; -static CB_TARGET_DEFS_MAP cb_linux_signal_map[] = { +static CB_TARGET_DEFS_MAP cb_linux_signal_map[] = +{ #ifdef SIGHUP # define TARGET_LINUX_SIGHUP 1 { SIGHUP, TARGET_LINUX_SIGHUP }, |