Make old compilers not choke -- define the attribute in the func prototype.
authorEric Andersen <andersen@codepoet.org>
Wed, 31 Jan 2001 23:00:46 +0000 (23:00 -0000)
committerEric Andersen <andersen@codepoet.org>
Wed, 31 Jan 2001 23:00:46 +0000 (23:00 -0000)
mkfs_minix.c
util-linux/mkfs_minix.c

index a2b6d8a6e5547dc196627bac05aee12a21b88a79..9b40faac666e4e18a9d80eb48a251ccb4fcd039e 100644 (file)
@@ -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);
 }
index a2b6d8a6e5547dc196627bac05aee12a21b88a79..9b40faac666e4e18a9d80eb48a251ccb4fcd039e 100644 (file)
@@ -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);
 }