/usr/include/ap_config.h is in libapron-dev 0.9.10-7.
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 28 29 30 | /* ************************************************************************* */
/* ap_config.h */
/* ************************************************************************* */
/* This file is part of the APRON Library, released under LGPL license. Please
read the COPYING file packaged in the distribution */
#ifndef _AP_CONFIG_H_
#define _AP_CONFIG_H_
#include <stdlib.h>
#include <string.h>
#ifdef __cplusplus
#define HAS_BOOL
extern "C" {
#endif
#ifndef HAS_BOOL
#define HAS_BOOL
typedef char bool;
static const bool false = 0;
static const bool true = 1;
#endif
#ifdef __cplusplus
}
#endif
#endif
|