ObjFW  Check-in [8090e85bbd]

Overview
Comment:Improve order of includes.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 8090e85bbdc3dd566eb1874c580ada542208db8ca54b6c37dc5217b2bc82b935
User & Date: js on 2011-04-11 12:29:45
Other Links: manifest | tags
Context
2011-04-12
12:43
Detach threads when we never joined them. check-in: 70b77b9b3a user: js tags: trunk
2011-04-11
12:29
Improve order of includes. check-in: 8090e85bbd user: js tags: trunk
00:37
A few readability improvements. check-in: e52ccc8d45 user: js tags: trunk
Changes

Modified src/OFApplication.m from [c502011fa5] to [470b88e078].

15
16
17
18
19
20
21





22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
 */

#include "config.h"

#define OF_APPLICATION_M

#include <stdlib.h>






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

#import "OFNotImplementedException.h"

#include <string.h>

#ifdef __MACH__
# include <crt_externs.h>
#else
 extern char **environ;
#endif

static OFApplication *app = nil;

static void
atexit_handler()
{







>
>
>
>
>









<
<
|
<
<
|







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


36


37
38
39
40
41
42
43
44
 */

#include "config.h"

#define OF_APPLICATION_M

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

#ifdef __MACH__
# include <crt_externs.h>
#endif

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

#import "OFNotImplementedException.h"



#ifndef __MACH__


extern char **environ;
#endif

static OFApplication *app = nil;

static void
atexit_handler()
{