/usr/share/mozart/doc/apptut/counter.cc is in mozart-doc 1.4.0-8ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | #include "mozart.h"
static long n;
OZ_BI_define(counter_next,0,1)
{
OZ_RETURN_INT(n++);
}
OZ_BI_end
OZ_C_proc_interface * oz_init_module(void)
{
static OZ_C_proc_interface table[] = {
{"next",0,1,counter_next},
{0,0,0,0}
};
n = 1;
return table;
}
|