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