diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2017-06-22 13:37:40 +0200 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2017-06-28 10:27:31 +0200 |
commit | ca517e8b320c7a31c3a147fb1212ddb33cabd919 (patch) | |
tree | a26d535836a82ea241dc0389b061176ddfcd8329 /nor-utils/rfdformat.c | |
parent | 3029b659e89caa79b6860c3bbe8cbc18b53af678 (diff) |
Eliminate warnings about missing prototypes
This patch eliminates warnings generated by the -Wmissing-prototypes
option. With this flag set, we are now forced to have prototypes for
all global, exported functions, that have to be made visible to the
definitions and we are forced to mark all local functions as static.
Signed-off-by: David Oberhollenzer <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'nor-utils/rfdformat.c')
-rw-r--r-- | nor-utils/rfdformat.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/nor-utils/rfdformat.c b/nor-utils/rfdformat.c index 1f01a85..0a3d9fb 100644 --- a/nor-utils/rfdformat.c +++ b/nor-utils/rfdformat.c @@ -30,7 +30,7 @@ #include "common.h" -void display_help(int status) +static void display_help(int status) { printf("Usage: %s [OPTIONS] MTD-device\n" "Formats NOR flash for resident flash disk\n" @@ -41,7 +41,7 @@ void display_help(int status) exit(status); } -void display_version(void) +static void display_version(void) { common_print_version(); printf("This is free software; see the source for copying conditions. There is NO\n" @@ -49,7 +49,7 @@ void display_version(void) exit(0); } -void process_options(int argc, char *argv[], const char **mtd_filename) +static void process_options(int argc, char *argv[], const char **mtd_filename) { int error = 0; |