heptagon/compiler/obc/c
Cédric Pasteur 2956e6feb4 Fix printing of arrays in C code
It should be 
  f(int a[5])
instead of 
  f(int *a)
because the second one does not scale for 
multidimensional arrays, eg
  g(int b[10][5]) is ok
but
  g(int **b) is not.
2010-09-03 15:27:58 +02:00
..
c.ml Fix printing of arrays in C code 2010-09-03 15:27:58 +02:00
c.mli Added alias for types (aka typedef) 2010-07-27 09:23:16 +02:00
cgen.ml Removed useless code for old module handling in cgen. 2010-09-03 11:50:52 +02:00
cmain.ml Revet last commit a5f89876c2 and gives the right fix. 2010-09-01 14:40:31 +02:00
csubst.ml Refactoring Ident -> Idents ( uniform with Names etc ) 2010-07-23 19:45:19 +02:00