summaryrefslogtreecommitdiff
path: root/sys/lib/libsa/exec.c
diff options
context:
space:
mode:
authorragge <ragge@NetBSD.org>1996-06-02 13:28:21 +0000
committerragge <ragge@NetBSD.org>1996-06-02 13:28:21 +0000
commit28061842a2fc9465e6989e9e4c8c6043cfc208b1 (patch)
treeea975c8cdd34a023b6145f1c5fd89979b5634033 /sys/lib/libsa/exec.c
parent988867d90a656ce4b6005f6c5342690c9d25c3fe (diff)
Fix include file order to confirm to KNF in master tree also.
Diffstat (limited to 'sys/lib/libsa/exec.c')
-rw-r--r--sys/lib/libsa/exec.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/exec.c b/sys/lib/libsa/exec.c
index ba82c940aba..ee054323450 100644
--- a/sys/lib/libsa/exec.c
+++ b/sys/lib/libsa/exec.c
@@ -1,4 +1,4 @@
-/* $NetBSD: exec.c,v 1.12 1996/05/14 10:28:18 leo Exp $ */
+/* $NetBSD: exec.c,v 1.13 1996/06/02 13:28:23 ragge Exp $ */
/*-
* Copyright (c) 1982, 1986, 1990, 1993
@@ -33,13 +33,13 @@
* SUCH DAMAGE.
*/
-#include <string.h>
#include <sys/param.h>
#include <sys/reboot.h>
#ifndef INSECURE
#include <sys/stat.h>
#endif
#include <a.out.h>
+#include <string.h>
#include "stand.h"