/usr/include/pike8.0/pike/cpp.h is in pike8.0-dev 8.0.498-1build1.
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 | /*
|| This file is part of Pike. For copyright information see COPYRIGHT.
|| Pike is distributed under GPL, LGPL and MPL. See the file COPYING
|| for more information.
*/
#ifndef CPP_H
#define CPP_H
#ifndef STRUCT_HASH_ENTRY_DECLARED
struct hash_entry;
#define STRUCT_HASH_ENTRY_DECLARED
#endif
/* Prototypes begin here */
void f_cpp(INT32 args);
void init_cpp(void);
void add_predefine(const char *s);
void exit_cpp(void);
/* Prototypes end here */
#endif
|