/***********************************************************************/ /* */ /* Objective Caml */ /* */ /* 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. */ /* */ /***********************************************************************/ /* $Id$ */ #ifndef _REENTRANT /* This helps detection on Digital Unix... */ #define _REENTRANT #endif #include #include 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; }