ObjFW  Check-in [adf57d7dbf]

Overview
Comment:Include stdlib.h instead of alloca.h.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: adf57d7dbff30215dfe51d4231c1b762a4c62236d8f00095430b613c38880ee3
User & Date: js on 2011-10-11 21:37:36
Other Links: manifest | tags
Context
2011-10-11
21:55
Don't use madvise(). check-in: 6cbbd7c39c user: js tags: trunk
21:37
Include stdlib.h instead of alloca.h. check-in: adf57d7dbf user: js tags: trunk
2011-10-09
13:05
Adjust objfw-config and objfw-compile to buildsys changes. check-in: 36464567d2 user: js tags: trunk
Changes

Modified src/OFProcess.m from [e808b0835a] to [eb421acf0f].

12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 * Public License, either version 2 or 3, which can be found in the file
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#include "config.h"

#include <alloca.h>
#include <unistd.h>

#include <sys/wait.h>

#import "OFProcess.h"
#import "OFString.h"
#import "OFArray.h"







|







12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
 * Public License, either version 2 or 3, which can be found in the file
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

#include "config.h"

#include <stdlib.h>
#include <unistd.h>

#include <sys/wait.h>

#import "OFProcess.h"
#import "OFString.h"
#import "OFArray.h"