1
mirror of https://github.com/jedisct1/libsodium.git synced 2024-12-19 18:15:18 -07:00

misuse test: just return from main() on unsupported platforms

This commit is contained in:
Frank Denis 2017-07-30 17:54:54 +02:00
parent 6ac18dae42
commit 0ce03b6cea

View File

@ -75,6 +75,6 @@ main(void)
int int
main(void) main(void)
{ {
exit(0); return 0;
} }
#endif #endif