diff options
author | Bert Münnich <ber.t@gmx.com> | 2012-02-27 19:22:05 +0100 |
---|---|---|
committer | Bert Münnich <ber.t@gmx.com> | 2012-02-27 19:22:05 +0100 |
commit | 751ebb3b29367bdcfd4e1956a36fa8f8f49f15a3 (patch) | |
tree | b54ab84be1b4ed8c3645a11bcb42fc075fb37fbd | |
parent | ed2c9f7caa67dcd1c9b0331c5634d9ccdb3b9fa8 (diff) |
Fixed issue #39: missing include of <sys/select.h>
-rw-r--r-- | Makefile | 2 | ||||
-rw-r--r-- | main.c | 1 |
2 files changed, 2 insertions, 1 deletions
@@ -1,4 +1,4 @@ -VERSION = git-20120221 +VERSION = git-20120227 CC = gcc CFLAGS = -ansi -Wall -pedantic -O2 @@ -23,6 +23,7 @@ #include <stdio.h> #include <string.h> #include <unistd.h> +#include <sys/select.h> #include <sys/stat.h> #include <sys/time.h> #include <X11/Xutil.h> |