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 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/* config.h.in. Generated automatically from configure.in by autoheader. */
/* Process this file with autoheader to produce config.h.in */
#ifndef CONFIG_H
#define CONFIG_H
/* Package and version */
#define PACKAGE "t1utils"
#define VERSION "97"
/* Define to empty if the keyword does not work. */
#undef const
/* Define if you have the strerror function. */
#undef HAVE_STRERROR
/* Define if you have the <inttypes.h> header file. */
#undef HAVE_INTTYPES_H
/* Name of package */
#undef PACKAGE
/* Version number of package */
#undef VERSION
#ifdef __cplusplus
extern "C" {
#endif
/* Prototype strerror() if we don't have it. */
#ifndef HAVE_STRERROR
char *strerror(int errno);
#endif
/* Get the [u]int*_t typedefs. */
#undef NEED_SYS_TYPES_H
#ifdef NEED_SYS_TYPES_H
# include <sys/types.h>
#endif
#undef HAVE_INTTYPES_H
#ifdef HAVE_INTTYPES_H
# include <inttypes.h>
#endif
#undef uint16_t
#undef uint32_t
#undef int32_t
#ifdef __cplusplus
}
/* Get rid of inline macro under C++ */
# undef inline
#endif
#endif
|