aboutsummaryrefslogtreecommitdiff
path: root/util-linux
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-01-31 23:00:46 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-01-31 23:00:46 +0000
commit9334de44c5774ddb1aaee4bf137760ea096c358a (patch)
tree667cb157a1e97ef11e80da146e513a075e00b1d7 /util-linux
parentdaa692b64776f1e2552a198ae786d2e5f3b50620 (diff)
downloadbusybox-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.c4
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
258static __attribute__ ((noreturn)) void show_usage() 258static void show_usage() __attribute__ ((noreturn));
259
260static void show_usage()
259{ 261{
260 usage(mkfs_minix_usage); 262 usage(mkfs_minix_usage);
261} 263}