Changeset d5a89a3 in mainline for uspace/lib/c/arch/arm32/include/libarch/rtld/dynamic.h
- Timestamp:
- 2019-02-11T22:31:04Z (6 years ago)
- Children:
- aaf9789c
- Parents:
- e3272101 (diff), 4805495 (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
-
uspace/lib/c/arch/arm32/include/libarch/rtld/dynamic.h
re3272101 rd5a89a3 1 1 /* 2 * Copyright (c) 201 8 Jaroslav Jindrak2 * Copyright (c) 2019 Jiri Svoboda 3 3 * All rights reserved. 4 4 * … … 27 27 */ 28 28 29 #ifndef LIBCPP_BITS_COMMON 30 #define LIBCPP_BITS_COMMON 29 /** @addtogroup libc 30 * @{ 31 */ 32 /** @file 33 */ 31 34 32 /** 33 * According to section 17.2 of the standard, 34 * the restrict qualifier shall be omitted. 35 */ 36 #define restrict 35 #ifndef _LIBC_arm32_RTLD_DYNAMIC_H_ 36 #define _LIBC_arm32_RTLD_DYNAMIC_H_ 37 37 38 #undef NULL 39 #define NULL nullptr 38 typedef struct { 39 /* Empty. */ 40 } dyn_info_arch_t; 40 41 41 42 #endif 43 44 /** @} 45 */
Note:
See TracChangeset
for help on using the changeset viewer.