xref: /netbsd-src/crypto/external/bsd/heimdal/dist/lib/roken/stdint.hin (revision d16b7486a53dcb8072b60ec6fcb4373a2d0c27b7)
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