Coccinelle release 0.2.5-rc3
[bpt/coccinelle.git] / prim.c
1 #include "caml/mlvalues.h"
2
3 static int x = 0;
4
5 CAMLprim value c_counter(value nothing) {
6 return Val_long(x++);
7 }