ObjFW  Check-in [a83e398ae4]

Overview
Comment:Add missing include for Nintendo DS
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a83e398ae43b46d6023d0f026f38ffaf7b985fea96f3786a55f31a7caa9a5fd0
User & Date: js on 2015-10-03 14:23:29
Other Links: manifest | tags
Context
2015-10-04
11:11
Special cases for the Wii's weird network stack check-in: 4cecf82254 user: js tags: trunk
2015-10-03
14:23
Add missing include for Nintendo DS check-in: a83e398ae4 user: js tags: trunk
14:12
Don't check for -pedantic for Nintendo DS check-in: 1bc4d664a2 user: js tags: trunk
Changes

Modified src/OFFile.m from [9fe26dc5db] to [568732b489].

24
25
26
27
28
29
30

31
32
33
34
35
36
37
#ifdef __wii__
# define BOOL OGC_BOOL
# include <fat.h>
# undef BOOL
#endif

#ifdef OF_NINTENDO_DS

# include <filesystem.h>
#endif

#import "OFFile.h"
#import "OFString.h"
#import "OFSystemInfo.h"








>







24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifdef __wii__
# define BOOL OGC_BOOL
# include <fat.h>
# undef BOOL
#endif

#ifdef OF_NINTENDO_DS
# include <stdbool.h>
# include <filesystem.h>
#endif

#import "OFFile.h"
#import "OFString.h"
#import "OFSystemInfo.h"