summaryrefslogtreecommitdiff
path: root/config/auto-aux/ansi.c
blob: 35e0f5090d62002a691f255ebed01ca8cb4acffb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/***********************************************************************/
/*                                                                     */
/*                           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
}