ocaml/config/auto-aux/ansi.c

20 lines
809 B
C

/***********************************************************************/
/* */
/* Objective Caml */
/* */
/* Xavier Leroy, projet Cristal, INRIA Rocquencourt */
/* */
/* Copyright 1997 Institut National de Recherche en Informatique et */
/* Automatique. Distributed only by permission. */
/* */
/***********************************************************************/
int main()
{
#ifdef __STDC__
return 0;
#else
return 1;
#endif
}