commit | bd018b1babf0521b8e740abb6473133c1c4c35d2 | [log] [tgz] |
---|---|---|
author | Eric Andersen <andersen@codepoet.org> | Wed Jan 31 23:00:46 2001 +0000 |
committer | Eric Andersen <andersen@codepoet.org> | Wed Jan 31 23:00:46 2001 +0000 |
tree | 667cb157a1e97ef11e80da146e513a075e00b1d7 | |
parent | dd19c6990496023fe23fefef8f1798740f7d39c6 [diff] [blame] |
Make old compilers not choke -- define the attribute in the func prototype.
diff --git a/mkfs_minix.c b/mkfs_minix.c index a2b6d8a..9b40faa 100644 --- a/mkfs_minix.c +++ b/mkfs_minix.c
@@ -255,7 +255,9 @@ #define mark_zone(x) (setbit(zone_map,(x)-FIRSTZONE+1)) #define unmark_zone(x) (clrbit(zone_map,(x)-FIRSTZONE+1)) -static __attribute__ ((noreturn)) void show_usage() +static void show_usage() __attribute__ ((noreturn)); + +static void show_usage() { usage(mkfs_minix_usage); }