reindent-20030715
[openafs.git] / src / sys / iwrite.c
index 98f5d2c..9e4b6fc 100644 (file)
@@ -10,7 +10,8 @@
 #include <afsconfig.h>
 #include <afs/param.h>
 
-RCSID("$Header$");
+RCSID
+    ("$Header$");
 
 #include <sys/types.h>
 #include <sys/stat.h>
@@ -19,10 +20,10 @@ RCSID("$Header$");
 
 #include "AFS_component_version_number.c"
 
-main(argc,argv)
-char **argv;
+main(argc, argv)
+     char **argv;
 {
-    
+
     struct stat status;
     int count;
 
@@ -34,7 +35,9 @@ char **argv;
        printf("Usage: iwrite inode offset string count\n");
        exit(1);
     }
-    count = xiwrite(status.st_dev, atoi(argv[1]), 17, atoi(argv[2]), argv[3], atoi(argv[4]));
+    count =
+       xiwrite(status.st_dev, atoi(argv[1]), 17, atoi(argv[2]), argv[3],
+               atoi(argv[4]));
     if (count == -1) {
        perror("iwrite");
        exit(1);