ObjFW  Check-in [a99399b1b5]

Overview
Comment:Include <limits.h> when using PATH_MAX
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: a99399b1b556b5f78f4fa723af7b11b2b08633bb322123275af10c5e57c3731f
User & Date: js on 2018-02-17 00:30:32
Other Links: manifest | tags
Context
2018-02-17
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
00:06
configure: Do not enable -Wshadow for Nintendo DS check-in: 8a2f1b9dfb user: js tags: trunk
Changes

Modified src/OFFileManager.m from [85bf245254] to [59fa94222b].

14
15
16
17
18
19
20

21
22
23
24
25
26
27
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#include "config.h"

#include <errno.h>


#include "unistd_wrapper.h"

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







>







14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#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"

Modified src/OFSystemInfo.m from [1ceb93d76e] to [b4c37fc2ed].

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

#define __NO_EXT_QNX

#include "config.h"

#include <stdlib.h>	/* include any libc header to get the libc defines */

#include "unistd_wrapper.h"

#include "platform.h"

#ifdef OF_MACOS
# include <sys/sysctl.h>







|







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

#define __NO_EXT_QNX

#include "config.h"

#include <limits.h>	/* include any libc header to get the libc defines */

#include "unistd_wrapper.h"

#include "platform.h"

#ifdef OF_MACOS
# include <sys/sysctl.h>