diff options
author | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-01-31 23:00:46 +0000 |
---|---|---|
committer | andersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2001-01-31 23:00:46 +0000 |
commit | 9334de44c5774ddb1aaee4bf137760ea096c358a (patch) | |
tree | 667cb157a1e97ef11e80da146e513a075e00b1d7 /util-linux | |
parent | daa692b64776f1e2552a198ae786d2e5f3b50620 (diff) | |
download | busybox-w32-9334de44c5774ddb1aaee4bf137760ea096c358a.tar.gz busybox-w32-9334de44c5774ddb1aaee4bf137760ea096c358a.tar.bz2 busybox-w32-9334de44c5774ddb1aaee4bf137760ea096c358a.zip |
Make old compilers not choke -- define the attribute in the func prototype.
git-svn-id: svn://busybox.net/trunk/busybox@1733 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'util-linux')
-rw-r--r-- | util-linux/mkfs_minix.c | 4 |
1 files changed, 3 insertions, 1 deletions
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) | |||
255 | #define mark_zone(x) (setbit(zone_map,(x)-FIRSTZONE+1)) | 255 | #define mark_zone(x) (setbit(zone_map,(x)-FIRSTZONE+1)) |
256 | #define unmark_zone(x) (clrbit(zone_map,(x)-FIRSTZONE+1)) | 256 | #define unmark_zone(x) (clrbit(zone_map,(x)-FIRSTZONE+1)) |
257 | 257 | ||
258 | static __attribute__ ((noreturn)) void show_usage() | 258 | static void show_usage() __attribute__ ((noreturn)); |
259 | |||
260 | static void show_usage() | ||
259 | { | 261 | { |
260 | usage(mkfs_minix_usage); | 262 | usage(mkfs_minix_usage); |
261 | } | 263 | } |