summaryrefslogtreecommitdiff
path: root/sys/arch/hppa/stand
diff options
context:
space:
mode:
authorJoel Sing <jsing@cvs.openbsd.org>2014-01-22 09:18:05 +0000
committerJoel Sing <jsing@cvs.openbsd.org>2014-01-22 09:18:05 +0000
commit4bd0d7246014bd6044332675260aa56bb13dbed9 (patch)
tree70a5b879e9f1978cca18c65b8d8bb9889be4d6b4 /sys/arch/hppa/stand
parentce9cb0184ba465ba8d0eff3a05d57e22e0eeb452 (diff)
Clean up code - sort headers, remove __OpenBSD__ #ifdefs and ansify
function declarations. ok kettenis@
Diffstat (limited to 'sys/arch/hppa/stand')
-rw-r--r--sys/arch/hppa/stand/mkboot/mkboot.c78
1 files changed, 15 insertions, 63 deletions
diff --git a/sys/arch/hppa/stand/mkboot/mkboot.c b/sys/arch/hppa/stand/mkboot/mkboot.c
index 6453f8eba9c..de84d6b6f44 100644
--- a/sys/arch/hppa/stand/mkboot/mkboot.c
+++ b/sys/arch/hppa/stand/mkboot/mkboot.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: mkboot.c,v 1.17 2013/10/17 08:02:15 deraadt Exp $ */
+/* $OpenBSD: mkboot.c,v 1.18 2014/01/22 09:18:04 jsing Exp $ */
/*
* Copyright (c) 1990, 1993
@@ -32,18 +32,18 @@
*/
#include <sys/param.h>
+#include <sys/exec.h>
+#include <sys/exec_elf.h>
#include <sys/file.h>
#include <sys/stat.h>
-#include <string.h>
+
+#include <ctype.h>
+#include <err.h>
#include <stdlib.h>
-#include <unistd.h>
+#include <stdio.h>
+#include <string.h>
#include <time.h>
-#ifdef __OpenBSD__
-#include <err.h>
-#endif
-
-#include <sys/exec.h>
-#include <sys/exec_elf.h>
+#include <unistd.h>
#ifndef hppa
/* hack for cross compile XXX */
@@ -52,9 +52,6 @@
#include <sys/disklabel.h>
#endif
-#include <stdio.h>
-#include <ctype.h>
-
int putfile(char *, int);
void __dead usage(void);
void bcddate(char *, char *);
@@ -64,9 +61,6 @@ int cksum(int, int *, int);
char *to_file;
int loadpoint, verbose;
u_long entry;
-#ifndef __OpenBSD__
-char *__progname = "mkboot";
-#endif
/*
* Old Format:
@@ -178,13 +172,11 @@ main(int argc, char **argv)
if (close(to) < 0)
err(1, "%s", to_file);
- return(0);
+ return (0);
}
int
-putfile(from_file, to)
- char *from_file;
- int to;
+putfile(char *from_file, int to)
{
struct exec ex;
register int n, total;
@@ -313,10 +305,7 @@ putfile(from_file, to)
}
int
-cksum(ck, p, size)
- int ck;
- int *p;
- int size;
+cksum(int ck, int *p, int size)
{
/* we assume size is int-aligned */
for (size = (size + sizeof(int) - 1) / sizeof(int); size--; p++ )
@@ -326,7 +315,7 @@ cksum(ck, p, size)
}
void __dead
-usage()
+usage(void)
{
extern char *__progname;
fprintf(stderr,
@@ -336,8 +325,7 @@ usage()
}
char *
-lifname(str)
- char *str;
+lifname(char *str)
{
static char lname[10] = "XXXXXXXXXX";
register int i;
@@ -358,26 +346,10 @@ lifname(str)
void
-bcddate(file, toc)
- char *file;
- char *toc;
+bcddate(char *file, char *toc)
{
struct stat statb;
-#ifndef __OpenBSD__
- struct tm {
- int tm_sec; /* second (0-61, allows for leap seconds) */
- int tm_min; /* minute (0-59) */
- int tm_hour; /* hour (0-23) */
- int tm_mday; /* day of the month (1-31) */
- int tm_mon; /* month (0-11) */
- int tm_year; /* years since 1900 */
- int tm_wday; /* day of the week (0-6) */
- int tm_yday; /* day of the year (0-365) */
- int tm_isdst; /* non-0 if daylight saving time is in effect */
- } *tm;
-#else
struct tm *tm;
-#endif
stat(file, &statb);
tm = localtime(&statb.st_ctime);
@@ -394,23 +366,3 @@ bcddate(file, toc)
*toc = (tm->tm_sec / 10) << 4;
*toc |= tm->tm_sec % 10;
}
-
-#ifndef __OpenBSD__
-int
-err(ex, str)
- int ex;
- char *str;
-{
- perror(str);
- exit(ex);
-}
-
-int
-errx(ex, str)
- int ex;
- char *str;
-{
- perror(str);
- exit(ex);
-}
-#endif