Skip to content
Snippets Groups Projects
Commit b1a371be authored by deuce's avatar deuce
Browse files

Only UNIX systems need the exit() hack and MSVC doesn't allow multiply defined

symbols by default.
parent 3961da75
No related branches found
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ void exit_crypt()
#else
#ifdef __unix__
/*
* cryptlib calls fork() to gather entropy.
* It then calls exit().
......@@ -38,6 +39,7 @@ void exit(int code)
{
_exit(code);
}
#endif
struct crypt_funcs cl;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment