From ecc5a07e7e097ad50a1aa9547a3b50f2ae5a460e Mon Sep 17 00:00:00 2001 From: Richard Frith-MacDonald Date: Wed, 15 Oct 2008 05:10:55 +0000 Subject: [PATCH] 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 --- ChangeLog | 2 ++ Source/inet_ntop.c | 4 +--- Source/inet_pton.c | 5 ++--- 3 files changed, 5 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index b3e2edca7..0aaeee0c3 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,8 @@ 2008-10-14 Richard Frith-Macdonald * 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 diff --git a/Source/inet_ntop.c b/Source/inet_ntop.c index 74583106e..b74cbc9a7 100644 --- a/Source/inet_ntop.c +++ b/Source/inet_ntop.c @@ -17,14 +17,12 @@ */ #include "config.h" +#include "GNUstepBase/GSConfig.h" #include #include #include #include -#ifdef HAVE_STDINT_H -#include -#endif #include #include "GSNetwork.h" diff --git a/Source/inet_pton.c b/Source/inet_pton.c index 7e06e0e82..02f60d14a 100644 --- a/Source/inet_pton.c +++ b/Source/inet_pton.c @@ -19,12 +19,11 @@ #include "config.h" +#include "GNUstepBase/GSConfig.h" + #include #include #include -#ifdef HAVE_STDINT_H -#include -#endif #include #include "GSNetwork.h"