ObjFW  Check-in [63a3618f2b]

Overview
Comment:Add a missing include.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 63a3618f2bf774230a4ce6c53044f884fae0d175f6fe2d793b2350109949a3b0
User & Date: js on 2012-02-21 16:42:06
Other Links: manifest | tags
Context
2012-02-21
19:59
Don't try to use SIG{HUP,USR1,USR2} on Windows. check-in: e345013735 user: js tags: trunk
16:42
Add a missing include. check-in: 63a3618f2b user: js tags: trunk
2012-02-20
22:40
Set version to 0.7-dev in default branch. check-in: 584a8dccec user: js tags: trunk
Changes

Modified src/OFApplication.m from [14e0a7d129] to [771a8d1673].

16
17
18
19
20
21
22




23
24
25
26
27
28
29

#include "config.h"

#define OF_APPLICATION_M

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





#import "OFApplication.h"
#import "OFString.h"
#import "OFArray.h"
#import "OFDictionary.h"
#import "OFAutoreleasePool.h"








>
>
>
>







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

#include "config.h"

#define OF_APPLICATION_M

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

#ifndef _WIN32
# include <signal.h>
#endif

#import "OFApplication.h"
#import "OFString.h"
#import "OFArray.h"
#import "OFDictionary.h"
#import "OFAutoreleasePool.h"