From 751ebb3b29367bdcfd4e1956a36fa8f8f49f15a3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bert=20M=C3=BCnnich?= <ber.t@gmx.com> Date: Mon, 27 Feb 2012 19:22:05 +0100 Subject: [PATCH] Fixed issue #39: missing include of <sys/select.h> --- Makefile | 2 +- main.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 10e47d3..34c2283 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -VERSION = git-20120221 +VERSION = git-20120227 CC = gcc CFLAGS = -ansi -Wall -pedantic -O2 diff --git a/main.c b/main.c index d6fb6f9..bf1835c 100644 --- a/main.c +++ b/main.c @@ -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>