diff options
| author | 2013-12-28 11:26:57 +0000 | |
|---|---|---|
| committer | 2013-12-28 11:26:57 +0000 | |
| commit | 808c65001a8f417e47b5d11110894acfa47f0f8a (patch) | |
| tree | adc1ef26254f6709484ba7afbd55841a56d3b7a0 /usr.sbin/installboot/installboot.h | |
| parent | Tweak makefiles so that we pull in source files based on defines. (diff) | |
| download | wireguard-openbsd-808c65001a8f417e47b5d11110894acfa47f0f8a.tar.xz wireguard-openbsd-808c65001a8f417e47b5d11110894acfa47f0f8a.zip | |
Various code clean ups - add a missing header, add a missing prototype,
add some casts, tweak some types and variable names.
Diffstat (limited to 'usr.sbin/installboot/installboot.h')
| -rw-r--r-- | usr.sbin/installboot/installboot.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/installboot/installboot.h b/usr.sbin/installboot/installboot.h index ec0f56d3555..1b0a79efe48 100644 --- a/usr.sbin/installboot/installboot.h +++ b/usr.sbin/installboot/installboot.h @@ -1,4 +1,4 @@ -/* $OpenBSD: installboot.h,v 1.1 2013/12/27 13:52:40 jsing Exp $ */ +/* $OpenBSD: installboot.h,v 1.2 2013/12/28 11:26:57 jsing Exp $ */ /* * Copyright (c) 2012, 2013 Joel Sing <jsing@openbsd.org> * @@ -22,6 +22,10 @@ extern int verbose; extern char *stage1; extern char *stage2; +#ifdef BOOTSTRAP +void bootstrap(int, char *, char *); +#endif + void md_init(void); void md_loadboot(void); void md_installboot(int, char *); |
