Added sfdisk. Ststic-ified a bunch of stuff.

This commit is contained in:
Eric Andersen
1999-10-19 20:03:34 +00:00
parent a3f09076ef
commit e77ae3a2c0
61 changed files with 4029 additions and 504 deletions

View File

@@ -14,12 +14,12 @@
#include <stdio.h>
#include <utmp.h>
const char dutmp_usage[] = "dutmp\n"
static const char dutmp_usage[] = "dutmp\n"
"\n"
"\tDump file or stdin utmp file format to stdout, pipe delimited.\n"
"\tdutmp /var/run/utmp\n";
extern int dutmp_fn (int argc, char **argv)
static int dutmp_main (int argc, char **argv)
{
FILE *f = stdin;

View File

@@ -15,7 +15,7 @@
#include <sys/types.h>
#include <sys/stat.h>
const char makedevs_usage[] =
static const char makedevs_usage[] =
"makedevs 0.01 -- Create an entire range of device files\n\n"
"\tmakedevs /dev/ttyS c 4 64 0 63 (ttyS0-ttyS63)\n"
"\tmakedevs /dev/hda b 3 0 0 8 s (hda,hda1-hda8)\n";
@@ -45,8 +45,7 @@ char buf[255];
case 'f':
mode = S_IFIFO; break;
default:
fprintf(stderr, "Usage: %s\n", makedevs_usage);
return 2;
usage( makedevs_usage);
}
mode |= 0660;

View File

@@ -3,7 +3,7 @@
#include <sys/mtio.h>
#include <sys/fcntl.h>
const char mt_usage[] = "mt [-f device] opcode value\n";
static const char mt_usage[] = "mt [-f device] opcode value\n";
struct mt_opcodes {
char * name;