1#ifndef INTINCL_H
2#define INTINCL_H
3
4/* Define to 1 if you have the <inttypes.h> header file. */
5#undef HAVE_INTTYPES_H
6/* Define to 1 if you have the <stdint.h> header file. */
7#undef HAVE_STDINT_H
8
9#ifdef HAVE_INTTYPES_H
10#  include <inttypes.h>
11#else
12#  ifdef HAVE_STDINT_H
13#    include <stdint.h>
14#  endif
15#endif
16
17/* BSD needs this */
18#ifndef UINT16_MAX
19#define UINT16_MAX 0xffffU
20#endif
21
22#endif
23