diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-11 15:36:59 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2015-10-11 15:36:59 +0000 |
commit | f1615bd825f76181cd97a61ffde28d00dc3a8cd2 (patch) | |
tree | 71259623cac62dfa82defe7f96d0d7d8e9cda6fa /usr.sbin/installboot | |
parent | 0c4eb929418a5f2283c5f741ef5da90b4023961c (diff) |
needs at least some include love; choosing <stdlib.h>
Diffstat (limited to 'usr.sbin/installboot')
-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; |