Bugfix: xcb_conn.c included <sys/fcntl.h> instead of the POSIX-standard <fcntl.h>.

This commit is contained in:
Alan Coopersmith 2006-04-19 21:51:33 -07:00 committed by Jamey Sharp
parent f705456744
commit 05a66af895

View File

@ -32,7 +32,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <netinet/in.h> #include <netinet/in.h>
#include <sys/select.h> #include <sys/select.h>
#include <sys/fcntl.h> #include <fcntl.h>
#include <errno.h> #include <errno.h>
#include "xcb.h" #include "xcb.h"