ObjFW  Check-in [0cfb61a41c]

Overview
Comment:Include sys/types.h before using ssize_t
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.90
Files: files | file ages | folders
SHA3-256: 0cfb61a41c7b742d648a0ea223e6cbb45682c53667d7083e0b448f73d87aa8ff
User & Date: js on 2017-07-29 20:23:30
Other Links: branch diff | manifest | tags
Context
2017-07-29
20:29
OFStream: Only ignore SIGPIPE if it is defined check-in: e6d96d6fbc user: js tags: 0.90
20:23
Include sys/types.h before using ssize_t check-in: 0cfb61a41c user: js tags: 0.90
20:12
Fix compilation for Wii check-in: 76efe22e8f user: js tags: 0.90
Changes

Modified src/OFString.h from [f5efa5d129] to [bb11f44cdb].

16
17
18
19
20
21
22






23
24
25
26
27
28
29

#ifndef __STDC_LIMIT_MACROS
# define __STDC_LIMIT_MACROS
#endif
#ifndef __STDC_CONSTANT_MACROS
# define __STDC_CONSTANT_MACROS
#endif







#include <stdarg.h>
#include <stdint.h>

#import "OFObject.h"
#import "OFSerialization.h"
#import "OFJSONRepresentation.h"







>
>
>
>
>
>







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

#ifndef __STDC_LIMIT_MACROS
# define __STDC_LIMIT_MACROS
#endif
#ifndef __STDC_CONSTANT_MACROS
# define __STDC_CONSTANT_MACROS
#endif

#import "objfw-defs.h"

#ifdef OF_HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif

#include <stdarg.h>
#include <stdint.h>

#import "OFObject.h"
#import "OFSerialization.h"
#import "OFJSONRepresentation.h"