This commit was manufactured by cvs2svn to create tag 'FreeBSD-release/1.0'.
[unix-history] / usr.bin / bdes / bdes.c
index 3d5521b..53080d8 100644 (file)
@@ -78,6 +78,13 @@ static char sccsid[] = "@(#)bdes.c   5.5 (Berkeley) 6/27/91";
  * or the technical report for a complete reference).
  */
 
  * or the technical report for a complete reference).
  */
 
+#include <errno.h>
+#include <unistd.h>
+#include <stdio.h>
+#include <ctype.h>
+#include <stdlib.h>
+#include <string.h>
+
 #ifndef DES
 main()
 {
 #ifndef DES
 main()
 {
@@ -86,13 +93,6 @@ main()
 }
 #else
 
 }
 #else
 
-#include <errno.h>
-#include <unistd.h>
-#include <stdio.h>
-#include <ctype.h>
-#include <stdlib.h>
-#include <string.h>
-
 /*
  * BSD and System V systems offer special library calls that do
  * block moves and fills, so if possible we take advantage of them
 /*
  * BSD and System V systems offer special library calls that do
  * block moves and fills, so if possible we take advantage of them