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