1
+
/* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
 
2
+
 * Copyright by The HDF Group.                                               *
 
3
+
 * Copyright by the Board of Trustees of the University of Illinois.         *
 
4
+
 * All rights reserved.                                                      *
 
5
+
 *                                                                           *
 
6
+
 * This file is part of HDF5.  The full HDF5 copyright notice, including     *
 
7
+
 * terms governing use, modification, and redistribution, is contained in    *
 
8
+
 * the files COPYING and Copyright.html.  COPYING can be found at the root   *
 
9
+
 * of the source code distribution tree; Copyright.html can be found at the  *
 
10
+
 * root level of an installed copy of the electronic HDF5 document set and   *
 
11
+
 * is linked from the top-level documents page.  It can also be found at     *
 
12
+
 * http://hdfgroup.org/HDF5/doc/Copyright.html.  If you do not have          *
 
13
+
 * access to either file, you may request a copy from help@hdfgroup.org.     *
 
14
+
 * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
1
15
 
/* A sample C99 program to test if a compiler is C99 compatible. */
2
16
 
3
17
 
#include <stdio.h>
4
18
 
#include <stdlib.h>
5
19
 
6
20
 
/* a C99 header file */
7
21
 
8
22
 
/* 10 billion usually exceeds data range of long. */
9
23
 
#define negative_tenbillion  -10000000000LL
10
24