ObjFW  Check-in [2e73c5fb65]

Overview
Comment:Fix a missing include
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 2e73c5fb6561f1b5a9809f32c5cc329f37a690bc8f83fc08e6fc487f5fd6a3d4
User & Date: js on 2015-10-17 15:06:28
Other Links: manifest | tags
Context
2015-10-17
17:27
Add +[OFSystemInfo supportsAltiVec] check-in: ffdba49764 user: js tags: trunk
15:06
Fix a missing include check-in: 2e73c5fb65 user: js tags: trunk
12:17
Fix two forgotten instances of FD_SETSIZE on Win32 check-in: 3a9dbf5fee user: js tags: trunk
Changes

Modified src/macros.h from [a7d0bdefbc] to [c4da03627b].

19
20
21
22
23
24
25

26
27
28
29
30
31
32
#ifndef __STDC_LIMIT_MACROS
# define __STDC_LIMIT_MACROS
#endif
#ifndef __STDC_CONSTANT_MACROS
# define __STDC_CONSTANT_MACROS
#endif


#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#ifdef OF_OBJFW_RUNTIME







>







19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#ifndef __STDC_LIMIT_MACROS
# define __STDC_LIMIT_MACROS
#endif
#ifndef __STDC_CONSTANT_MACROS
# define __STDC_CONSTANT_MACROS
#endif

#include <stdbool.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#ifdef OF_OBJFW_RUNTIME