Import <bsd/stdlib.h> if not on a BSD system. Still needs LIBS=-lbsd.
This commit is contained in:
parent
5b16eaa1f0
commit
edb38970db
1 changed files with 6 additions and 1 deletions
|
@ -27,7 +27,12 @@
|
|||
* RC4 is a registered trademark of RSA Laboratories.
|
||||
*/
|
||||
|
||||
#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__) || \
|
||||
defined(__APPLE__)
|
||||
# include <stdlib.h>
|
||||
#else
|
||||
# include <bsd/stdlib.h>
|
||||
#endif
|
||||
#include <stdint.h>
|
||||
|
||||
/*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue