ObjFW  Check-in [66f6ca045c]

Overview
Comment:Indent defines and imports where it is useful.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 66f6ca045c09c62debf486c3b470ee7c10c1c8df4c6e658acbfd45811053572d
User & Date: js on 2009-12-09 18:43:52
Other Links: manifest | tags
Context
2009-12-09
19:09
Check whether getaddrinfo is thread-safe and use locks if not. check-in: c8398d985d user: js tags: trunk
18:43
Indent defines and imports where it is useful. check-in: 66f6ca045c user: js tags: trunk
2009-12-07
20:12
Fix typo. check-in: ed366ad8f8 user: js tags: trunk
Changes

Modified src/OFExceptions.m from [0ba93b17bb] to [dd4a5ac59f].

13
14
15
16
17
18
19
20

21
22
23
24
25
26
27
28
29
30
31

#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#import <objc/objc-api.h>
#ifdef __objc_INCLUDE_GNU

#define SEL_NAME(x) sel_get_name(x)
#else
#import <objc/runtime.h>
#define SEL_NAME(x) sel_getName(x)
#endif

#import "OFExceptions.h"
#import "OFTCPSocket.h"

#ifndef _WIN32
#include <errno.h>







|
>
|

<
|







13
14
15
16
17
18
19
20
21
22
23

24
25
26
27
28
29
30
31

#define _GNU_SOURCE
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#import <objc/objc-api.h>
#ifdef OF_APPLE_RUNTIME
# import <objc/runtime.h>
# define SEL_NAME(x) sel_getName(x)
#else

# define SEL_NAME(x) sel_get_name(x)
#endif

#import "OFExceptions.h"
#import "OFTCPSocket.h"

#ifndef _WIN32
#include <errno.h>

Modified src/OFMacros.h from [c7622317c1] to [423a04e77c].

whitespace changes only

Modified src/OFObject.m from [6eaebd22dd] to [ff3d52f1b1].

whitespace changes only

Modified src/OFTCPSocket.m from [f19d63597b] to [4bb7848f0c].

whitespace changes only

Modified src/threading.h from [04a0546353] to [0ccf73f4cd].

whitespace changes only