include: Don't redefine _GNU_SOURCE.

This commit is contained in:
André Hentschel 2013-09-19 20:50:55 +02:00 committed by Alexandre Julliard
parent e0bb0adee5
commit 128bfdf6da
1 changed files with 3 additions and 1 deletions

View File

@ -29,7 +29,9 @@
# error You must include port.h before all other headers
#endif
#define _GNU_SOURCE /* for pread/pwrite */
#ifndef _GNU_SOURCE
# define _GNU_SOURCE /* for pread/pwrite */
#endif
#include <fcntl.h>
#include <math.h>
#include <sys/types.h>