do not redefine _GNU_SOURCE

This commit is contained in:
Tim Ruehsen 2014-03-21 11:05:09 +01:00
parent 2327025f3a
commit f22a3fcb71
1 changed files with 4 additions and 1 deletions

View File

@ -24,7 +24,10 @@
*
*/
#define _GNU_SOURCE
// need _GNU_SOURCE for qsort_r()
#ifndef _GNU_SOURCE
# define _GNU_SOURCE
#endif
#if HAVE_CONFIG_H
# include <config.h>