A minimalistic project from the suckless team: https://tools.suckless.org/blind/ Submitted by: myself Approved by: tcberner (mentor) Differential Revision: https://reviews.freebsd.org/D14099
14 lines
352 B
C
14 lines
352 B
C
--- src/blind-split.c.orig 2017-05-06 11:27:39 UTC
|
|
+++ src/blind-split.c
|
|
@@ -2,7 +2,11 @@
|
|
#include "stream.h"
|
|
#include "util.h"
|
|
|
|
+#if defined(__FreeBSD__) || defined(__OpenBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
|
|
+#include <stdlib.h>
|
|
+#else
|
|
#include <alloca.h>
|
|
+#endif
|
|
#include <fcntl.h>
|
|
#include <inttypes.h>
|
|
#include <limits.h>
|