Changeset cc6f688 in mainline for libc/include/libc.h
- Timestamp:
- 2005-11-22T17:07:38Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 3a6d6656
- Parents:
- 25b0e6a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libc/include/libc.h
r25b0e6a rcc6f688 30 30 #define __LIBC__LIBC_H__ 31 31 32 #include <types.h> 33 34 35 typedef enum { 36 SYS_CTL = 0, 37 SYS_IO = 1 38 } syscall_t; 39 32 40 33 41 extern void __main(void); 34 42 extern void __exit(void); 35 extern void __syscall(const unsigned int id, const unsigned int p1, const unsigned int p2, const unsigned int p3);43 extern unsigned int __syscall(const syscall_t id, const sysarg_t p1, const sysarg_t p2, const sysarg_t p3); 36 44 37 45
Note:
See TracChangeset
for help on using the changeset viewer.