Skip to content

Commit 70603fa

Browse files
committed
Fix makedev() prototype
Fixes #1281
1 parent 9255113 commit 70603fa

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

libc/calls/makedev.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#ifndef COSMOPOLITAN_LIBC_CALLS_MAKEDEV_H_
22
#define COSMOPOLITAN_LIBC_CALLS_MAKEDEV_H_
3+
COSMOPOLITAN_C_START_
34

45
uint64_t makedev(uint32_t, uint32_t) libcesque;
56
uint32_t major(uint64_t) libcesque;
@@ -9,4 +10,5 @@ uint32_t minor(uint64_t) libcesque;
910
#define minor(x) minor(x)
1011
#define makedev(x, y) makedev(x, y)
1112

13+
COSMOPOLITAN_C_END_
1214
#endif /* COSMOPOLITAN_LIBC_CALLS_MAKEDEV_H_ */

0 commit comments

Comments
 (0)