Overview
| Comment: | runtime: Don't depend on platform.h in ObjFW-RT.h
platform.h does not get installed to the ObjFW-RT include directory. |
|---|---|
| Downloads: | Tarball | ZIP archive | SQL archive |
| Timelines: | family | ancestors | descendants | both | trunk |
| Files: | files | file ages | folders |
| SHA3-256: |
636098dbddb9a8ec9ef671cacaff325e |
| User & Date: | js on 2017-07-24 20:33:00 |
| Other Links: | manifest | tags |
Context
|
2017-07-29
| ||
| 10:50 | Set version to 0.90-dev as 0.90 has been branched (check-in: 7e614ef5c0 user: js tags: trunk) | |
| 10:22 | Create 0.90 branch (check-in: f934699959 user: js tags: 0.90) | |
|
2017-07-24
| ||
| 20:33 | runtime: Don't depend on platform.h in ObjFW-RT.h (check-in: 636098dbdd user: js tags: trunk) | |
| 20:29 | OFINIFile: Always use \r\n (check-in: 1248c00475 user: js tags: trunk) | |
Changes
Modified src/runtime/ObjFW-RT.h from [58330b8a4d] to [8577ac8d70].
| ︙ | ︙ | |||
24 25 26 27 28 29 30 | # define __STDC_CONSTANT_MACROS #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> | < < | 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | # define __STDC_CONSTANT_MACROS #endif #include <stdbool.h> #include <stddef.h> #include <stdint.h> #ifndef __has_feature # define __has_feature(x) 0 #endif #ifndef __has_attribute # define __has_attribute(x) 0 #endif |
| ︙ | ︙ | |||
197 198 199 200 201 202 203 |
struct objc_protocol_list {
struct objc_protocol_list *_Nullable next;
long count;
Protocol *__unsafe_unretained _Nonnull list[1];
};
| | | 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 |
struct objc_protocol_list {
struct objc_protocol_list *_Nullable next;
long count;
Protocol *__unsafe_unretained _Nonnull list[1];
};
#if 1 /* !defined(__MORPHOS__) || defined(OF_COMPILING_OBJFW_RT) */
# ifdef __cplusplus
extern "C" {
# endif
extern SEL _Nonnull sel_registerName(const char *_Nonnull);
extern const char *_Nonnull sel_getName(SEL _Nonnull);
extern bool sel_isEqual(SEL _Nonnull, SEL _Nonnull);
extern Class _Nonnull objc_allocateClassPair(Class _Nullable,
|
| ︙ | ︙ |