* Source/NSString: Define _GNU_SOURCE to make protoype of fwprintf

visible.


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@22838 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
ayers 2006-04-30 08:20:35 +00:00
parent 075d73c8b8
commit ba59f28d5d
2 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,8 @@
2006-04-30 David Ayers <d.ayers@inode.at>
* Source/NSString: Define _GNU_SOURCE to make protoype of fwprintf
visible.
2006-04-28 Richard Frith-Macdonald <rfm@gnu.org>
* Source/NSKeyedUnarchiver.m: Fix decoding of NSNull objects.

View file

@ -43,6 +43,11 @@
Limited choice of default encodings.
*/
/* Needed for visiblity of fwprintf prototype. */
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "config.h"
#include <stdio.h>
#include <string.h>