1/* rep_config.h.in -- configure defs needed by library callers */
2
3#ifndef REP_CONFIG_H
4#define REP_CONFIG_H
5
6/* Version number */
7#undef rep_VERSION
8
9/* libtool interface revision number */
10#undef rep_INTERFACE
11
12/* Define if you have some flavour of Unix */
13#undef rep_HAVE_UNIX
14
15/* An implicitly signed integer type, that a pointer can be cast to and
16   from without dropping bits */
17#undef rep_PTR_SIZED_INT
18
19/* This is either L or LL -- the suffix to append to integer constants
20   of the above type */
21#undef rep_PTR_SIZED_INT_SUFFIX
22
23/* A string, the printf integer conversion of the above integer type,
24   i.e. "" for int, "l" for long, "ll" for long long */
25#undef rep_PTR_SIZED_INT_CONV
26
27/* The number of bytes in the above type. */
28#undef rep_PTR_SIZED_INT_SIZEOF
29#define rep_PTR_SIZED_INT_BITS (rep_PTR_SIZED_INT_SIZEOF * CHAR_BIT)
30
31/* The minimum alignment of memory allocated by malloc(). The default of
32   four should be ok for most systems? */
33#undef rep_MALLOC_ALIGNMENT
34
35/* Defined if `long long int' is available */
36#undef rep_HAVE_LONG_LONG
37
38#endif /* REP_CONFIG_H */
39