/usr/include/snacc/c/policy.h is in libsnacc-dev 1.3bbn-11ubuntu2.
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 20 21 22 23 24 25 26 27 | /*
* file: policy.h
*
*/
/*
* enable the snacc compiler's Tcl interface generating code?
* set it to 0 or 1.
*/
#ifndef NO_TCL
#define NO_TCL 0
#endif
/*
* enable code for meta code generation?
* the Tcl code needs it.
*/
#ifndef NO_META
#define NO_META NO_TCL
#endif
/*
* enable code for CORBA IDL generation?
*/
#ifndef IDL
#define IDL 1
#endif
|