xref: /netbsd-src/crypto/external/bsd/heimdal/dist/lib/roken/stdint.hin (revision cef8759bd76c1b621f8eab8faa6f208faabc2e15)
1#ifndef _STDINT_H
2#define _STDINT_H
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8typedef long long int64_t;
9typedef unsigned long long uint64_t;
10
11#ifdef __cplusplus
12}
13#endif
14
15#endif	/* _STDINT_H */
16