1/* Public domain. */
2
3#ifndef UINT64_H
4#define UINT64_H
5
6/* sysdep: +ulong64 */
7
8typedef unsigned long uint64;
9
10#endif
11