Make glibc define the prototype for strcasestr

This commit is contained in:
Dan Fandrich 2007-09-25 17:33:56 +00:00
parent a19de6e9ac
commit 966130132f
1 changed files with 5 additions and 0 deletions

View File

@ -21,6 +21,11 @@
* $Id$
***************************************************************************/
#ifndef _GNU_SOURCE
/* glibc needs this to define the prototype for strcasestr */
#define _GNU_SOURCE 1
#endif
#include "setup.h"
#include <string.h>