Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
freebsd
GitHub Repository: freebsd/freebsd-src
Path: blob/main/crypto/krb5/src/plugins/kdb/db2/libdb2/include/config.h
34927 views
1
/* This includes autoconf.h and defines u_int32_t. */
2
#include "db-config.h"
3
4
#ifndef HAVE_U_INT16_T
5
#define u_int16_t unsigned short
6
#endif
7
#ifndef HAVE_INT16_T
8
#define int16_t short
9
#endif
10
11
#ifndef HAVE_INT8_T
12
#define int8_t signed char
13
#endif
14
#ifndef HAVE_U_INT8_T
15
#define u_int8_t unsigned char
16
#endif
17
#ifndef HAVE_INT32_T
18
#define int32_t int
19
#endif
20
21
#ifndef HAVE_SSIZE_T
22
#define ssize_t int
23
#endif
24
25