]> git.ipfire.org Git - thirdparty/dhcpcd.git/commitdiff
Add needed includes for some systems.
authorRoy Marples <roy@marples.name>
Sun, 7 Sep 2014 18:33:30 +0000 (18:33 +0000)
committerRoy Marples <roy@marples.name>
Sun, 7 Sep 2014 18:33:30 +0000 (18:33 +0000)
compat/arc4random_uniform.c

index 96c1c1bc30ce02842621e783ba04bc745dbcf1f7..b597551271c05edec19bf382d2369abf7c0712ec 100644 (file)
@@ -14,6 +14,9 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <stdint.h>
+#include <stdlib.h>
+
 /* We need to include config.h so we pickup either the system arc4random
  * or our compat one. */
 #include "../config.h"