Added sfdisk.  Ststic-ified a bunch of stuff.
diff --git a/miscutils/dutmp.c b/miscutils/dutmp.c
index 7dd5b91..c5307b6 100644
--- a/miscutils/dutmp.c
+++ b/miscutils/dutmp.c
@@ -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;
diff --git a/miscutils/makedevs.c b/miscutils/makedevs.c
index 00f0066..f7fbeb2 100644
--- a/miscutils/makedevs.c
+++ b/miscutils/makedevs.c
@@ -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 @@
 		case 'f':
 			mode = S_IFIFO; break;
 		default:
-			fprintf(stderr, "Usage: %s\n", makedevs_usage);
-			return 2;
+			usage( makedevs_usage);
 	}       
 	mode |= 0660; 
 
diff --git a/miscutils/mt.c b/miscutils/mt.c
index a61ad5a..7168ef7 100644
--- a/miscutils/mt.c
+++ b/miscutils/mt.c
@@ -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;