From: Eric Andersen Date: Wed, 31 Jan 2001 23:00:46 +0000 (-0000) Subject: Make old compilers not choke -- define the attribute in the func prototype. X-Git-Tag: 0_50~266 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=bd018b1babf0521b8e740abb6473133c1c4c35d2;p=oweals%2Fbusybox.git Make old compilers not choke -- define the attribute in the func prototype. --- 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); } diff --git a/util-linux/mkfs_minix.c b/util-linux/mkfs_minix.c index a2b6d8a6e..9b40faac6 100644 --- a/util-linux/mkfs_minix.c +++ b/util-linux/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); }