/usr/include/cloog/isl/domain.h is in libcloog-isl-dev 0.18.2-1.
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 31 32 33 34 35 36 | #ifndef CLOOG_ISL_DOMAIN_H
#define CLOOG_ISL_DOMAIN_H
#include <isl/map.h>
#include <isl/set.h>
#include <isl/union_map.h>
#include <isl/union_set.h>
#if defined(__cplusplus)
extern "C"
{
#endif
struct cloogdomain {
int dummy; /* Solaris cc doesn't like zero-sized structs */
};
struct cloogscattering {
int dummy; /* Solaris cc doesn't like zero-sized structs */
};
CloogDomain *cloog_domain_from_isl_set(__isl_take isl_set *set);
CloogScattering *cloog_scattering_from_isl_map(__isl_take isl_map *map);
CloogUnionDomain *cloog_union_domain_from_isl_union_map(
__isl_take isl_union_map *umap);
CloogUnionDomain *cloog_union_domain_from_isl_set(
__isl_take isl_set *set);
__isl_give isl_set *isl_set_from_cloog_domain(CloogDomain *domain);
#if defined(__cplusplus)
}
#endif
#endif /* define _H */
|