mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-12 09:17:53 +00:00
- Remove most __ASSEMBLER__ __LINKER__ ifdefs - Rename libc/intrin/bits.h to libc/serialize.h - Block pthread cancelation in fchmodat() polyfill - Remove `clang-format off` statements in third_party
13 lines
363 B
C
13 lines
363 B
C
#ifndef COSMOPOLITAN_LIBC_BITS_HILBERT_H_
|
|
#define COSMOPOLITAN_LIBC_BITS_HILBERT_H_
|
|
#ifdef _COSMO_SOURCE
|
|
COSMOPOLITAN_C_START_
|
|
#define hilbert __hilbert
|
|
#define unhilbert __unhilbert
|
|
|
|
long hilbert(long, long, long) pureconst;
|
|
axdx_t unhilbert(long, long) pureconst;
|
|
|
|
COSMOPOLITAN_C_END_
|
|
#endif /* _COSMO_SOURCE */
|
|
#endif /* COSMOPOLITAN_LIBC_BITS_HILBERT_H_ */
|