diff options
author | Kaveh R. Ghazi <ghazi@caip.rutgers.edu> | 2003-01-12 02:14:56 +0000 |
---|---|---|
committer | Kaveh Ghazi <ghazi@gcc.gnu.org> | 2003-01-12 02:14:56 +0000 |
commit | 0a2f0c5497342d01717c93db97aeb5318c3ec42c (patch) | |
tree | ae14f5fe1cbe481163ab4bcb25d7f4cec4d064a8 /gcc/java/jv-scan.c | |
parent | 8e37cba890b62aa56f48cfbbca16e16b748355d6 (diff) | |
download | gcc-0a2f0c5497342d01717c93db97aeb5318c3ec42c.zip gcc-0a2f0c5497342d01717c93db97aeb5318c3ec42c.tar.gz gcc-0a2f0c5497342d01717c93db97aeb5318c3ec42c.tar.bz2 |
* All Files: Convert to ISO C style function definitions.
From-SVN: r61218
Diffstat (limited to 'gcc/java/jv-scan.c')
-rw-r--r-- | gcc/java/jv-scan.c | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gcc/java/jv-scan.c b/gcc/java/jv-scan.c index 6707173..90e16e7 100644 --- a/gcc/java/jv-scan.c +++ b/gcc/java/jv-scan.c @@ -95,14 +95,14 @@ static const struct option options[] = }; static void -usage () +usage (void) { fprintf (stderr, "Try `jv-scan --help' for more information.\n"); exit (1); } static void -help () +help (void) { printf ("Usage: jv-scan [OPTION]... FILE...\n\n"); printf ("Print useful information read from Java source files.\n\n"); @@ -123,7 +123,7 @@ help () } static void -version () +version (void) { printf ("jv-scan (GCC) %s\n\n", version_string); printf ("Copyright (C) 2002 Free Software Foundation, Inc.\n"); @@ -264,8 +264,7 @@ warning (const char *s, ...) } void -gcc_obstack_init (obstack) - struct obstack *obstack; +gcc_obstack_init (struct obstack *obstack) { /* Let particular systems override the size of a chunk. */ #ifndef OBSTACK_CHUNK_SIZE |