/* * Copyright 2000, International Business Machines Corporation and others. * All Rights Reserved. * * This software has been released under the terms of the IBM Public * License. For details, see the LICENSE file in the top-level source * directory or online at http://www.openafs.org/dl/license10.html */ #include #include RCSID("$Header$"); #include #include #include #include #include "AFS_component_version_number.c" main(argc,argv) char **argv; { struct stat status; int count; if (stat("/vicepa", &status) == -1) { perror("stat"); exit(1); } if (--argc != 4) { 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])); if (count == -1) { perror("iwrite"); exit(1); } printf("iwrite successful, count==%d\n", count); exit(0); }