From: Martin Willi Date: Mon, 19 Nov 2007 12:27:08 +0000 (-0000) Subject: fixed memrchr compiler warning X-Git-Tag: 4.1.9~25 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e533b928f0d238bcaf71d11de1a1680cc576d913;p=thirdparty%2Fstrongswan.git fixed memrchr compiler warning --- diff --git a/src/libstrongswan/utils/lexparser.c b/src/libstrongswan/utils/lexparser.c index 52a0e16176..35ba0d7a6c 100644 --- a/src/libstrongswan/utils/lexparser.c +++ b/src/libstrongswan/utils/lexparser.c @@ -21,6 +21,8 @@ * RCSID $Id$ */ +/* memrchr is a GNU extension */ +#define _GNU_SOURCE #include #include "lexparser.h"