From: Johannes Berg Date: Wed, 22 Sep 2010 09:34:34 +0000 (+0200) Subject: define _ISOC99_SOURCE X-Git-Tag: v0.9.21~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fcad95ac0f2f8e818fe4bb204ec3355852608107;p=thirdparty%2Fiw.git define _ISOC99_SOURCE unfortunately netlink/object.h has a bug that leads to many warnings ("extern inline") so we can't use -std=c99 fully. --- diff --git a/iw.h b/iw.h index c21f093..22c05f4 100644 --- a/iw.h +++ b/iw.h @@ -1,6 +1,10 @@ #ifndef __IW_H #define __IW_H +#ifndef _ISOC99_SOURCE +#define _ISOC99_SOURCE +#endif + #include #include #include