source: CIVL/src/include/civl/civlc.cvl@ 5c27aa5

1.23 2.0 acw/focus-triggers main test-branch
Last change on this file since 5c27aa5 was f0296bc8, checked in by Stephen Siegel <siegel@…>, 12 years ago

Fixing bugs in new organization of includes.
Fixing bugs in math.h, math.cvl.
Getting rid of math.h since it is in ABC.

git-svn-id: svn://vsl.cis.udel.edu/civl/trunk@1800 fb995dde-84ed-4084-dfe6-e5aef3e2452c

  • Property mode set to 100644
File size: 411 bytes
Line 
1/* This header file contains the core definitions of the CIVL-C language,
2 * including standard types and function prototypes.
3 */
4
5#ifdef __CIVLC_CIVL__
6#else
7#define __CIVLC_CIVL__
8
9#include <civlc.cvh>
10
11/* Completes the declaration of this type in civlc.cvh */
12struct __int_iter__ {
13 int size;
14 int content[];
15 int index; //initialized as 0
16};
17
18void elaborate(int x) {
19 for(int i=0; i<x; i++);
20}
21
22#endif
Note: See TracBrowser for help on using the repository browser.