summaryrefslogtreecommitdiff
path: root/gcc/dbxout.c
diff options
context:
space:
mode:
authoraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-06 20:42:56 +0000
committeraj <aj@138bc75d-0d04-0410-961f-82ee72b054a4>2003-07-06 20:42:56 +0000
commita046944bca419afcd8c06e75438a1eaf1c38b341 (patch)
tree3f6751e6128a794a9cd52796dc7b26e75a461d2c /gcc/dbxout.c
parent68cfba79fa2803252e9d79159aec8c92f06578b7 (diff)
downloadgcc-a046944bca419afcd8c06e75438a1eaf1c38b341.tar.gz
* stmt.c: Convert remaining prototypes to ISO C90.
* cfglayout.c: Likewise. * dbxout.c: Likewise. * gcc.c: Likewise. * genemit.c: Likewise. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@69015 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/dbxout.c')
-rw-r--r--gcc/dbxout.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/gcc/dbxout.c b/gcc/dbxout.c
index cd178054660..0fb46a924f3 100644
--- a/gcc/dbxout.c
+++ b/gcc/dbxout.c
@@ -574,7 +574,7 @@ emit_bincl_stab (const char *name)
/* If there are pending bincls then it is time to emit all of them. */
static inline void
-emit_pending_bincls_if_required ()
+emit_pending_bincls_if_required (void)
{
if (pending_bincls)
emit_pending_bincls ();
@@ -583,7 +583,7 @@ emit_pending_bincls_if_required ()
/* Emit all pending bincls. */
static void
-emit_pending_bincls ()
+emit_pending_bincls (void)
{
struct dbx_file *f = current_file;
@@ -616,7 +616,7 @@ emit_pending_bincls ()
#else
static inline void
-emit_pending_bincls_if_required () {}
+emit_pending_bincls_if_required (void) {}
#endif
/* Change to reading from a new source file. Generate a N_BINCL stab. */