ObjFW  Check-in [0f4a81649d]

Overview
Comment:Include sys/types.h in objc_sync.m.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.5
Files: files | file ages | folders
SHA3-256: 0f4a81649d0fe7caa99989c1359b1437d904818333c85b3c40e17c8abde05291
User & Date: js on 2011-07-10 18:44:12
Other Links: branch diff | manifest | tags
Context
2011-07-12
23:13
Fix missing cast. check-in: c5e95e98ca user: js tags: 0.5
2011-07-10
18:44
Include sys/types.h in objc_sync.m. check-in: 0f4a81649d user: js tags: 0.5
17:43
Include sys/types.h for off_t. check-in: f9b89feb5a user: js tags: 0.5
Changes

Modified src/objc_sync.m from [4107e88ea3] to [80e72847c9].

15
16
17
18
19
20
21


22
23
24
25
26
27
28
 */

#include "config.h"

#include <stdio.h>
#include <stdlib.h>
#include <assert.h>



#ifdef OF_OBJFW_RUNTIME
# import <objfw-rt.h>
#else
# import <objc/objc.h>
#endif








>
>







15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 */

#include "config.h"

#include <stdio.h>
#include <stdlib.h>
#include <assert.h>

#include <sys/types.h>

#ifdef OF_OBJFW_RUNTIME
# import <objfw-rt.h>
#else
# import <objc/objc.h>
#endif