summaryrefslogtreecommitdiff
path: root/usr.sbin/config/mkmakefile.c
diff options
context:
space:
mode:
authorEdd Barrett <edd@cvs.openbsd.org>2011-10-02 22:20:51 +0000
committerEdd Barrett <edd@cvs.openbsd.org>2011-10-02 22:20:51 +0000
commitf4f5649a30e80e107cad4d88a0c6b7367114ea13 (patch)
treeee1d7b3c588881c1abe920e46df7e7829439d393 /usr.sbin/config/mkmakefile.c
parent8dda427aa4a00af05b383190962750ad29610f2b (diff)
Fix some minor things in config(8):
* As haesbaert suggests, correctly order include files. * Found some old style function defs. Updated. * Found a prototype inside a function. Moved. OK nicm@
Diffstat (limited to 'usr.sbin/config/mkmakefile.c')
-rw-r--r--usr.sbin/config/mkmakefile.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c
index 67918585d4d..55a705036d8 100644
--- a/usr.sbin/config/mkmakefile.c
+++ b/usr.sbin/config/mkmakefile.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mkmakefile.c,v 1.35 2010/06/02 20:42:17 chl Exp $ */
+/* $OpenBSD: mkmakefile.c,v 1.36 2011/10/02 22:20:50 edd Exp $ */
/* $NetBSD: mkmakefile.c,v 1.34 1997/02/02 21:12:36 thorpej Exp $ */
/*
@@ -42,12 +42,14 @@
*/
#include <sys/param.h>
+
#include <ctype.h>
#include <err.h>
#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+
#include "config.h"
#include "sem.h"