diff options
author | Alan Modra <amodra@gmail.com> | 2003-06-29 10:06:40 +0000 |
---|---|---|
committer | Alan Modra <amodra@gmail.com> | 2003-06-29 10:06:40 +0000 |
commit | c58b95236ce4c9345c4fa76e7ef16762e5229380 (patch) | |
tree | 332a115744ba45143797b861b78058e6f42fb995 /bfd/init.c | |
parent | 58611256d83c4bd2c27a88982d8449c99fdd154f (diff) | |
download | gdb-c58b95236ce4c9345c4fa76e7ef16762e5229380.zip gdb-c58b95236ce4c9345c4fa76e7ef16762e5229380.tar.gz gdb-c58b95236ce4c9345c4fa76e7ef16762e5229380.tar.bz2 |
Convert to C90 and a few tweaks.
Diffstat (limited to 'bfd/init.c')
-rw-r--r-- | bfd/init.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -35,7 +35,7 @@ FUNCTION bfd_init SYNOPSIS - void bfd_init(void); + void bfd_init (void); DESCRIPTION This routine must be called before any other BFD function to @@ -46,6 +46,6 @@ DESCRIPTION However, someday it may be needed, so keep it around. */ void -bfd_init () +bfd_init (void) { } |