ObjFW  Check-in [32e47a0f36]

Overview
Comment:OFString: Add missing #ifdef
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 32e47a0f36eae66701c9fa57efe01c3238895e730774557034230c1e4ea8fcce
User & Date: js on 2017-05-06 22:10:24
Other Links: manifest | tags
Context
2017-05-07
15:01
OFHTTPClient: Minor change to improve readability check-in: 8066257442 user: js tags: trunk
2017-05-06
22:10
OFString: Add missing #ifdef check-in: 32e47a0f36 user: js tags: trunk
22:08
configure: Check for fcntl.h check-in: 8016761093 user: js tags: trunk
Changes

Modified src/OFString.m from [1df6e58c9d] to [bfc8b98fd1].

24
25
26
27
28
29
30

31

32
33
34
35
36
37
38
#if defined(HAVE_STRTOF_L) || defined(HAVE_STRTOD_L)
# include <locale.h>
#endif
#ifdef HAVE_XLOCALE_H
# include <xlocale.h>
#endif


#include <sys/stat.h>


#import "OFString.h"
#import "OFString_UTF8.h"
#import "OFString_UTF8+Private.h"
#import "OFArray.h"
#import "OFDictionary.h"
#import "OFDataArray.h"







>
|
>







24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#if defined(HAVE_STRTOF_L) || defined(HAVE_STRTOD_L)
# include <locale.h>
#endif
#ifdef HAVE_XLOCALE_H
# include <xlocale.h>
#endif

#ifdef OF_HAVE_FILES
# include <sys/stat.h>
#endif

#import "OFString.h"
#import "OFString_UTF8.h"
#import "OFString_UTF8+Private.h"
#import "OFArray.h"
#import "OFDictionary.h"
#import "OFDataArray.h"