Added "limits.h".

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@21230 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Gregory John Casamento 2005-05-17 04:33:50 +00:00
parent 6bfa298cc8
commit f69530c060
2 changed files with 7 additions and 4 deletions

View file

@ -1,3 +1,8 @@
2005-05-15 19:57 Gregory John Casamento <greg_casamento@yahoo.com>
* Source/NSPropertyList.m: Changes to include limits.h rather
than explicitly define UINT_MAX.
2005-05-13 Richard Frith-Macdonald <rfm@gnu.org>
* Source/GSHTTPURLHandle.m: Minor improvement to detail of failure

View file

@ -24,6 +24,7 @@
#include "config.h"
#include <string.h>
#include <limits.h>
#include "GNUstepBase/preface.h"
#include "GNUstepBase/GSMime.h"
@ -45,11 +46,8 @@
#include "GNUstepBase/Unicode.h"
#include "GSPrivate.h"
extern BOOL GSScanDouble(unichar*, unsigned, double*);
#ifndef UINT_MAX
# define UINT_MAX 4294967295U
#endif
extern BOOL GSScanDouble(unichar*, unsigned, double*);
@class GSString;
@class GSMutableString;