Fixed issue #39: missing include of <sys/select.h>

master
Bert Münnich 2012-02-27 19:22:05 +01:00
parent ed2c9f7caa
commit 751ebb3b29
2 changed files with 2 additions and 1 deletions

View File

@ -1,4 +1,4 @@
VERSION = git-20120221
VERSION = git-20120227
CC = gcc
CFLAGS = -ansi -Wall -pedantic -O2

1
main.c
View File

@ -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>