Patch last_pach62 from vodz. This patch moves all the /proc parsing
[oweals/busybox.git] / util-linux / fdflush.c
index a244e8def4e94f9d53986729504a60e466b42d40..7f5b6c9be1c04778b4c1d3ffe63ae7b44d7118e1 100644 (file)
@@ -1,7 +1,7 @@
+/* vi: set sw=4 ts=4: */
 /*
  * Mini fdflush implementation for busybox
  *
- *
  * Copyright (C) 1995, 1996 by Bruce Perens <bruce@pixar.com>.
  *
  * This program is free software; you can redistribute it and/or modify
  *
  */
 
-#include "internal.h"
 #include <stdio.h>
 #include <sys/ioctl.h>
-#include <linux/fd.h>
 #include <fcntl.h>
+#include <stdlib.h>
+#include "busybox.h"
 
+/* From <linux/fd.h> */
+#define FDFLUSH  _IO(2,0x4b)
 
 extern int fdflush_main(int argc, char **argv)
 {
-    int        value;
-    int        fd;
-    if ( argc <= 1 || **(argv++) == '-' ) {
-       usage( "fdflush device\n");
-    }
+       int fd;
+
+       if (argc <= 1 || **(++argv) == '-')
+               show_usage();
 
-    fd = open(*argv, 0);
-    if ( fd < 0 ) {
-       perror(*argv);
-       exit(FALSE);
-    }
+       if ((fd = open(*argv, 0)) < 0)
+               perror_msg_and_die("%s", *argv);
 
-    value = ioctl(fd, FDFLUSH, 0);
-    close(fd);
+       if (ioctl(fd, FDFLUSH, 0))
+               perror_msg_and_die("%s", *argv);
 
-    if ( value ) {
-       perror(*argv);
-       exit(FALSE);
-    }
-    exit (TRUE);
+       return EXIT_SUCCESS;
 }