ObjFW  Diff

Differences From Artifact [da40cdf48e]:

To Artifact [1dc0fb3f7f]:


14
15
16
17
18
19
20




21

22
23
24
25
26
27
28
14
15
16
17
18
19
20
21
22
23
24

25
26
27
28
29
30
31
32







+
+
+
+
-
+







 * file.
 */

#ifndef __OBJFW_RUNTIME_H__
#define __OBJFW_RUNTIME_H__
#include <stdint.h>

#ifndef __has_feature
# define __has_feature(x) 0
#endif

#if defined(__has_feature) && __has_feature(objc_arc)
#if __has_feature(objc_arc)
# define OBJC_BRIDGE __bridge
#else
# define OBJC_BRIDGE
#endif

typedef struct objc_class *Class;
typedef struct objc_object *id;