diff options
author | 2008-05-08 18:04:34 +0000 | |
---|---|---|
committer | 2008-05-08 18:04:34 +0000 | |
commit | c77971ac5ea6a2af280d80ab485753c3db387ae5 (patch) | |
tree | 484bc49d54d5b1e1349e5f2aec22b6df9c37c105 | |
parent | retire vn_default_error() and replace all instances (diff) | |
download | wireguard-openbsd-c77971ac5ea6a2af280d80ab485753c3db387ae5.tar.xz wireguard-openbsd-c77971ac5ea6a2af280d80ab485753c3db387ae5.zip |
add missing header for exit
ok damien@
-rw-r--r-- | sbin/wpa-psk/wpa-psk.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sbin/wpa-psk/wpa-psk.c b/sbin/wpa-psk/wpa-psk.c index 1fcdcf4ee42..889f90f8cf7 100644 --- a/sbin/wpa-psk/wpa-psk.c +++ b/sbin/wpa-psk/wpa-psk.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wpa-psk.c,v 1.1 2008/04/15 16:29:05 damien Exp $ */ +/* $OpenBSD: wpa-psk.c,v 1.2 2008/05/08 18:04:34 chl Exp $ */ /*- * Copyright (c) 2008 Damien Bergamini <damien.bergamini@free.fr> @@ -22,6 +22,7 @@ #include <string.h> #include <stdio.h> +#include <stdlib.h> #include <err.h> /* |