ObjFW  Check-in [dddeff64f8]

Overview
Comment:OFException.m: Fix missing includes

Some systems declare strerror() and strerror_r() in string.h, others in
stdio.h.

Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: dddeff64f82f93e63de3c70b3132c0112ebcfc342f57fdd7d3d8dcdb54fa4270
User & Date: js on 2015-05-14 09:34:57
Other Links: manifest | tags
Context
2015-05-14
09:58
Clean up a few file and socket related checks check-in: b37fdafac1 user: js tags: trunk
09:34
OFException.m: Fix missing includes check-in: dddeff64f8 user: js tags: trunk
09:32
configure: Check for SSIZE_MAX check-in: ea080ec7ac user: js tags: trunk
Changes

Modified src/exceptions/OFException.m from [35e676e981] to [ca1be9d395].

13
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 <stdlib.h>


#ifdef HAVE_DLFCN_H
# include <dlfcn.h>
#endif

#import "OFException.h"
#import "OFString.h"







>

>







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

#include "config.h"

#include <errno.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#ifdef HAVE_DLFCN_H
# include <dlfcn.h>
#endif

#import "OFException.h"
#import "OFString.h"