Include <netdb.h> for MAXHOSTNAMELEN. (Reported by Matthias Klose

<doko@cs.tu-berlin.de>.)


git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@707 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
mccallum 1996-01-12 16:42:12 +00:00
parent dfc6da3d1e
commit cae481e0de

View file

@ -52,7 +52,10 @@
* - To the NEXTSTEP/GNUStep community
*************************************************************************/
#include <sys/param.h> /* for MAXHOSTNAMELEN */
/* One of these two should have MAXHOSTNAMELEN */
#include <sys/param.h>
#include <netdb.h>
#include <string.h>
#include <Foundation/NSString.h>
#include <Foundation/NSArray.h>