ObjFW  Check-in [da601d2a8a]

Overview
Comment:Add missing include for Nintendo DS
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.8
Files: files | file ages | folders
SHA3-256: da601d2a8adafaf2dcdff4d0b813cedfe8bf3e8ad3ff2db37e3218d5a7ee3ef5
User & Date: js on 2015-10-03 14:24:25
Other Links: branch diff | manifest | tags
Context
2015-10-04
11:12
Special cases for the Wii's weird network stack check-in: 3f87c28a33 user: js tags: 0.8
2015-10-03
14:24
Add missing include for Nintendo DS check-in: da601d2a8a user: js tags: 0.8
14:24
Don't check for -pedantic for Nintendo DS check-in: 8f6ef2c686 user: js tags: 0.8
Changes

Modified src/OFFile.m from [da1fb6d2d1] to [768cc854c3].

50
51
52
53
54
55
56

57
58
59
60
61
62
63
#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 "OFArray.h"
#ifdef OF_HAVE_THREADS







>







50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#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 "OFArray.h"
#ifdef OF_HAVE_THREADS