Add in ifconfig and route
[oweals/busybox.git] / freeramdisk.c
index 567151455470e00ee6e49f7dcbfe2c2d9d930b1e..8f90f40b539ae83c3e358c38875bc92f5705f579 100644 (file)
@@ -27,6 +27,7 @@
 #include <fcntl.h>
 #include <sys/ioctl.h>
 #include <errno.h>
+#include <stdlib.h>
 #include "busybox.h"
 
 
@@ -43,10 +44,10 @@ freeramdisk_main(int argc, char **argv)
        }
 
        if ((f = open(argv[1], O_RDWR)) == -1) {
-               fatalError( "cannot open %s: %s\n", argv[1], strerror(errno));
+               perror_msg_and_die("cannot open %s", argv[1]);
        }
        if (ioctl(f, BLKFLSBUF) < 0) {
-               fatalError( "failed ioctl on %s: %s\n", argv[1], strerror(errno));
+               perror_msg_and_die("failed ioctl on %s", argv[1]);
        }
        /* Don't bother closing.  Exit does
         * that, so we can save a few bytes */