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