diff options
author | 2015-10-11 15:36:58 +0000 | |
---|---|---|
committer | 2015-10-11 15:36:58 +0000 | |
commit | ea9a2450c58af90640fdea315623b147bd23d2b0 (patch) | |
tree | 05ca796db07e1ddd5b34f603987cd145c96fee46 | |
parent | pledge "stdio tty" works once the kernel allows TIOCGWINSZ. Do the pledge (diff) | |
download | wireguard-openbsd-ea9a2450c58af90640fdea315623b147bd23d2b0.tar.xz wireguard-openbsd-ea9a2450c58af90640fdea315623b147bd23d2b0.zip |
needs at least some include love; choosing <stdlib.h>
-rw-r--r-- | usr.sbin/installboot/landisk_installboot.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/installboot/landisk_installboot.c b/usr.sbin/installboot/landisk_installboot.c index 43ef3116990..2a613f176c6 100644 --- a/usr.sbin/installboot/landisk_installboot.c +++ b/usr.sbin/installboot/landisk_installboot.c @@ -1,4 +1,4 @@ -/* $OpenBSD: landisk_installboot.c,v 1.3 2015/10/08 14:50:38 krw Exp $ */ +/* $OpenBSD: landisk_installboot.c,v 1.4 2015/10/11 15:36:58 deraadt Exp $ */ /* * Copyright (c) 2013 Joel Sing <jsing@openbsd.org> @@ -16,6 +16,8 @@ * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include <stdlib.h> + #include "installboot.h" char *bootldr; |