Changeset 89c57b6 in mainline for kernel/generic/include/lib/memfnc.h
- Timestamp:
- 2011-04-13T14:45:41Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 88634420
- Parents:
- cefb126 (diff), 17279ead (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/lib/memfnc.h
rcefb126 r89c57b6 1 1 /* 2 * Copyright (c) 20 06 Jakub Jermar2 * Copyright (c) 2011 Martin Decky 3 3 * All rights reserved. 4 4 * … … 30 30 * @{ 31 31 */ 32 33 /** 34 * @file 35 * @brief Wrapper for explicit 64-bit arguments passed to syscalls. 32 /** @file 36 33 */ 37 34 38 #ifndef KERN_ SYSARG64_H_39 #define KERN_ SYSARG64_H_35 #ifndef KERN_LIB_MEMFNC_H_ 36 #define KERN_LIB_MEMFNC_H_ 40 37 41 typedef struct { 42 unsigned long long value; 43 } sysarg64_t; 38 #include <typedefs.h> 39 40 extern void *memset(void *, int, size_t); 41 extern void *memcpy(void *, const void *, size_t); 44 42 45 43 #endif
Note:
See TracChangeset
for help on using the changeset viewer.