mirror of
https://github.com/jedisct1/libsodium.git
synced 2024-12-19 18:15:18 -07:00
sodium_utils tests: exit() -> _exit()
This commit is contained in:
parent
870c6fc53f
commit
55b4510986
@ -6,6 +6,9 @@
|
|||||||
#ifdef HAVE_CATCHABLE_SEGV
|
#ifdef HAVE_CATCHABLE_SEGV
|
||||||
# include <signal.h>
|
# include <signal.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef _WIN32
|
||||||
|
# include <unistd.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#define TEST_NAME "sodium_utils2"
|
#define TEST_NAME "sodium_utils2"
|
||||||
#include "cmptest.h"
|
#include "cmptest.h"
|
||||||
@ -36,7 +39,7 @@ segv_handler(int sig)
|
|||||||
signal(SIGABRT, SIG_DFL);
|
signal(SIGABRT, SIG_DFL);
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
exit(0);
|
_exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
@ -6,6 +6,9 @@
|
|||||||
#ifdef HAVE_CATCHABLE_SEGV
|
#ifdef HAVE_CATCHABLE_SEGV
|
||||||
# include <signal.h>
|
# include <signal.h>
|
||||||
#endif
|
#endif
|
||||||
|
#ifndef _WIN32
|
||||||
|
# include <unistd.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
#define TEST_NAME "sodium_utils3"
|
#define TEST_NAME "sodium_utils3"
|
||||||
#include "cmptest.h"
|
#include "cmptest.h"
|
||||||
@ -32,7 +35,7 @@ segv_handler(int sig)
|
|||||||
signal(SIGABRT, SIG_DFL);
|
signal(SIGABRT, SIG_DFL);
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
exit(0);
|
_exit(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
|
Loading…
Reference in New Issue
Block a user