mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-02-01 12:03:41 +00:00
fa20edc44d
- 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
12 lines
325 B
C
12 lines
325 B
C
#ifndef COSMOPOLITAN_LIBC_CALLS_MAKEDEV_H_
|
|
#define COSMOPOLITAN_LIBC_CALLS_MAKEDEV_H_
|
|
|
|
uint64_t makedev(uint32_t, uint32_t);
|
|
uint32_t major(uint64_t);
|
|
uint32_t minor(uint64_t);
|
|
|
|
#define major(x) major(x)
|
|
#define minor(x) minor(x)
|
|
#define makedev(x, y) makedev(x, y)
|
|
|
|
#endif /* COSMOPOLITAN_LIBC_CALLS_MAKEDEV_H_ */
|