Changeset b5e68c8 in mainline for kernel/generic/include/lib/memfnc.h
- Timestamp:
- 2011-05-12T16:49:44Z (14 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- f36787d7
- Parents:
- e80329d6 (diff), 750636a (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
re80329d6 rb5e68c8 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.