40 lines
1.4 KiB
C
40 lines
1.4 KiB
C
/***********************************************************************/
|
|
/* */
|
|
/* OCaml */
|
|
/* */
|
|
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
|
|
/* */
|
|
/* Copyright 2002 Institut National de Recherche en Informatique et */
|
|
/* en Automatique. All rights reserved. This file is distributed */
|
|
/* under the terms of the GNU Library General Public License, with */
|
|
/* the special exception on linking described in file ../../LICENSE. */
|
|
/* */
|
|
/***********************************************************************/
|
|
|
|
#ifndef _REENTRANT
|
|
/* This helps detection on Digital Unix... */
|
|
#define _REENTRANT
|
|
#endif
|
|
|
|
#include <sys/types.h>
|
|
#include <netdb.h>
|
|
|
|
int main(int argc, char ** argv)
|
|
{
|
|
#if NUM_ARGS == 5
|
|
struct hostent *hp;
|
|
struct hostent h;
|
|
char buffer[1000];
|
|
int h_errno;
|
|
hp = gethostbyname_r("www.caml.org", &h, buffer, 10, &h_errno);
|
|
#elif NUM_ARGS == 6
|
|
struct hostent *hp;
|
|
struct hostent h;
|
|
char buffer[1000];
|
|
int h_errno;
|
|
int rc;
|
|
rc = gethostbyname_r("www.caml.org", &h, buffer, 10, &hp, &h_errno);
|
|
#endif
|
|
return 0;
|
|
}
|