diff options
author | Alon Bar-Lev <alon.barlev@gmail.com> | 2016-05-09 20:57:36 +0300 |
---|---|---|
committer | Nikos Mavrogiannopoulos <nmav@redhat.com> | 2016-05-10 09:17:02 +0200 |
commit | ada28bc73cc78e3b974e7b7faf9f19722d6ee152 (patch) | |
tree | 34aae8d23c7668ce81cb09ab11ab17a24f02b13c /tests/windows | |
parent | 38be05571223fc4ee0b96e75ddbcab500620dd3c (diff) | |
download | gnutls-ada28bc73cc78e3b974e7b7faf9f19722d6ee152.tar.gz |
build: tests/windows/cng-windows.c: fix implicit decleration of exit
Signed-off-by: Alon Bar-Lev <alon.barlev@gmail.com>
Diffstat (limited to 'tests/windows')
-rw-r--r-- | tests/windows/cng-windows.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/windows/cng-windows.c b/tests/windows/cng-windows.c index f435afb2c2..e92f7b037e 100644 --- a/tests/windows/cng-windows.c +++ b/tests/windows/cng-windows.c @@ -31,6 +31,8 @@ #ifndef _WIN32 +#include <stdlib.h> + void doit() { exit(77); |