blob: 662e56281747de32b9e8258c6d93f1c70a2517b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- a/stack.c
+++ b/stack.c
@@ -12,7 +12,11 @@
+#ifdef __FreeBSD__
+#include <stdlib.h>
+#else
#include <malloc.h>
+#endif
#include <string.h>
#include <sys/socket.h>
|