ObjFW  Diff

Differences From Artifact [1ed7809f51]:

To Artifact [f956fa931a]:


114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
114
115
116
117
118
119
120




121
122
123
124
125
126
127







-
-
-
-







#define OF_ENSURE(cond)							\
	if (!(cond)) {							\
		fprintf(stderr, "Failed to ensure condition in "	\
		    __FILE__ ":%d:\n" #cond "\n", __LINE__);		\
		abort();						\
	}

#ifdef OF_OBJFW_RUNTIME
# define objc_lookUpClass objc_lookup_class
#endif

#ifndef _WIN32
# define OF_PATH_DELIMITER '/'
#else
# define OF_PATH_DELIMITER '\\'
#endif
#define OF_PATH_PARENT_DIR @".."