ObjFW  Check-in [d67e97a311]

Overview
Comment:Include <sys/syslimits.h> for PATH_MAX on PSP
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: d67e97a311cbcd9b54a4360b167ed78e09ea7cdfb77d4239ca0901babd78d447
User & Date: js on 2018-02-17 00:38:05
Other Links: manifest | tags
Context
2018-02-17
00:42
.travis.yml: Add builds for Wii and PSP check-in: 514862215f user: js tags: trunk
00:38
Include <sys/syslimits.h> for PATH_MAX on PSP check-in: d67e97a311 user: js tags: trunk
00:30
Include <limits.h> when using PATH_MAX check-in: a99399b1b5 user: js tags: trunk
Changes

Modified src/OFFileManager.m from [59fa94222b] to [65d0521303].

17
18
19
20
21
22
23




24
25
26
27
28
29
30

#include "config.h"

#include <errno.h>
#include <limits.h>

#include "unistd_wrapper.h"





#import "OFArray.h"
#import "OFDate.h"
#import "OFDictionary.h"
#import "OFFile.h"
#import "OFFileManager.h"
#import "OFLocalization.h"







>
>
>
>







17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

#include "config.h"

#include <errno.h>
#include <limits.h>

#include "unistd_wrapper.h"

#ifdef OF_PSP
# include <sys/syslimits.h>
#endif

#import "OFArray.h"
#import "OFDate.h"
#import "OFDictionary.h"
#import "OFFile.h"
#import "OFFileManager.h"
#import "OFLocalization.h"