Make old compilers not choke -- define the attribute in the func prototype.
This commit is contained in:
parent
dd19c69904
commit
bd018b1bab
@ -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);
|
||||
}
|
||||
|
@ -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);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user