aboutsummaryrefslogtreecommitdiff
path: root/mkfs_minix.c
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2001-01-31 23:00:46 +0000
committerEric Andersen <andersen@codepoet.org>2001-01-31 23:00:46 +0000
commitbd018b1babf0521b8e740abb6473133c1c4c35d2 (patch)
tree667cb157a1e97ef11e80da146e513a075e00b1d7 /mkfs_minix.c
parentdd19c6990496023fe23fefef8f1798740f7d39c6 (diff)
downloadbusybox-bd018b1babf0521b8e740abb6473133c1c4c35d2.tar.gz
Make old compilers not choke -- define the attribute in the func prototype.
Diffstat (limited to 'mkfs_minix.c')
-rw-r--r--mkfs_minix.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/mkfs_minix.c b/mkfs_minix.c
index a2b6d8a6e..9b40faac6 100644
--- a/mkfs_minix.c
+++ b/mkfs_minix.c
@@ -255,7 +255,9 @@ static inline int bit(char * a,unsigned int i)
#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);
}