ObjFW  Check-in [dadf8a1a1f]

Overview
Comment:Add a missing include.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.6
Files: files | file ages | folders
SHA3-256: dadf8a1a1f366441e82d8877aef611ec7eb8d7debe174bbad648d3d9c43f1a73
User & Date: js on 2012-02-21 16:42:06
Other Links: branch diff | manifest | tags
Context
2012-02-21
19:59
Don't try to use SIG{HUP,USR1,USR2} on Windows. check-in: cf4be9e865 user: js tags: 0.6
16:42
Add a missing include. check-in: dadf8a1a1f user: js tags: 0.6
2012-02-20
22:40
Set version to 0.6 in 0.6 branch. check-in: 50e646afa1 user: js tags: 0.6
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"