bugfix for old systems without stdint.h

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@26918 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
rfm 2008-10-15 05:10:55 +00:00
parent b4a40cc24c
commit 3698d0d7d5
3 changed files with 5 additions and 6 deletions

View file

@ -1,6 +1,8 @@
2008-10-14 Richard Frith-Macdonald <rfm@gnu.org>
* Source/GSSocketStream.m: Fix for #24564
* Source/inet_pton.c: Fix for #24563
* Source/inet_ntop.c: Fix for #24563
2008-10-12 Larry Campbelln

View file

@ -17,14 +17,12 @@
*/
#include "config.h"
#include "GNUstepBase/GSConfig.h"
#include <ctype.h>
#include <sys/types.h>
#include <sys/param.h>
#include <stdio.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <errno.h>
#include "GSNetwork.h"

View file

@ -19,12 +19,11 @@
#include "config.h"
#include "GNUstepBase/GSConfig.h"
#include <ctype.h>
#include <sys/types.h>
#include <sys/param.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include <errno.h>
#include "GSNetwork.h"