summaryrefslogtreecommitdiffstats
path: root/sbin/modload
diff options
context:
space:
mode:
authorcharnier <charnier@FreeBSD.org>1998-07-06 07:07:41 +0000
committercharnier <charnier@FreeBSD.org>1998-07-06 07:07:41 +0000
commitb2d6ebc873ac170972d485215e3bdfb805bdd6ab (patch)
tree2cfa57dbf202bfe7d0af97e0d01ee63bbb869465 /sbin/modload
parent2f22f79b32324422335e75e611755a4976a9b43e (diff)
downloadFreeBSD-src-b2d6ebc873ac170972d485215e3bdfb805bdd6ab.zip
FreeBSD-src-b2d6ebc873ac170972d485215e3bdfb805bdd6ab.tar.gz
Add rcsid, remove unused #includes, spelling.
Diffstat (limited to 'sbin/modload')
-rw-r--r--sbin/modload/modload.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/sbin/modload/modload.c b/sbin/modload/modload.c
index 90251c7..ba85682 100644
--- a/sbin/modload/modload.c
+++ b/sbin/modload/modload.c
@@ -28,25 +28,25 @@
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
- *
- * $Id: modload.c,v 1.20 1997/08/21 22:33:59 jlemon Exp $
*/
+#ifndef lint
+static const char rcsid[] =
+ "$Id$";
+#endif /* not lint */
+
+#include <a.out.h>
+#include <err.h>
+#include <errno.h>
+#include <limits.h>
+#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
-#include <signal.h>
-#include <unistd.h>
#include <string.h>
-#include <limits.h>
-#include <errno.h>
-
-#include <err.h>
-#include <a.out.h>
+#include <unistd.h>
#include <sys/param.h>
#include <sys/ioccom.h>
-#include <sys/conf.h>
-#include <sys/mount.h>
#include <sys/lkm.h>
#include <sys/file.h>
#include <sys/wait.h>
@@ -358,7 +358,7 @@ main(argc, argv)
}
/*
- * Save ourselves before disaster (potentitally) strikes...
+ * Save ourselves before disaster (potentially) strikes...
*/
sync();
OpenPOWER on IntegriCloud