Changeset 002e613 in mainline for uspace/libc/arch/amd64/include/syscall.h
- Timestamp:
- 2006-09-01T21:01:02Z (18 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- cfa70add
- Parents:
- 9314ee1
- File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
uspace/libc/arch/amd64/include/syscall.h
r9314ee1 r002e613 1 1 /* 2 * Copyright (C) 200 6Martin Decky2 * Copyright (C) 2005 Martin Decky 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 /** @addtogroup libcsparc64 sparc64 30 * @brief sparc64 architecture dependent parts of libc 31 * @ingroup lc 29 /** @addtogroup libc 32 30 * @{ 33 31 */ 34 /** @file 32 /** 33 * @file 35 34 */ 36 35 37 #include <libc.h> 36 #ifndef LIBC_amd64_SYSCALL_H_ 37 #define LIBC_amd64_SYSCALL_H_ 38 38 39 sysarg_t __syscall(const sysarg_t p1, const sysarg_t p2, const sysarg_t p3, const sysarg_t p4, const syscall_t id) 40 { 41 return 0; 42 } 39 #include <syscall.h> 40 41 #endif 43 42 44 43 /** @}
Note:
See TracChangeset
for help on using the changeset viewer.