blob: ec61e48c5f77c7aa978428358823bb2290079f1a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
Index: screen.c
@@ -23,7 +23,11 @@
#include <options.h>
#include <screen.h>
#include <unistd.h>
+#ifdef __FreeBSD__
+#include <sys/wait.h>
+#else
#include <wait.h>
+#endif
#define LEFT 10
#define RIGHT 10
|