Changes in uspace/lib/c/include/libc.h [e26a4633:63f8966] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/libc.h
re26a4633 r63f8966 40 40 #include <libarch/syscall.h> 41 41 42 #ifdef __32_BITS__43 44 /** Explicit 64-bit arguments passed to syscalls. */45 typedef uint64_t sysarg64_t;46 47 #endif /* __32_BITS__ */48 49 42 #define __SYSCALL0(id) \ 50 43 __syscall0(0, 0, 0, 0, 0, 0, id) … … 60 53 __syscall5(p1, p2, p3, p4, p5, 0, id) 61 54 #define __SYSCALL6(id, p1, p2, p3, p4, p5, p6) \ 62 __syscall6(p1, p2, p3, p4, p5, p6, id) 55 __syscall6(p1, p2, p3, p4, p5, p6, id) 56 57 extern void __main(void *pcb_ptr); 58 extern void __exit(void); 63 59 64 60 #endif
Note:
See TracChangeset
for help on using the changeset viewer.