ObjFW  Check-in [444860580c]

Overview
Comment:Some architectures require memset for FD_ZERO and thus string.h.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 444860580cb48d3e9a35a788d99a241303437039f55b29ec20fbfa59996ce886
User & Date: js on 2010-06-20 20:59:35
Other Links: manifest | tags
Context
2010-06-20
21:02
Update PLATFORMS. check-in: c2554a691d user: js tags: trunk
20:59
Some architectures require memset for FD_ZERO and thus string.h. check-in: 444860580c user: js tags: trunk
2010-06-19
17:05
Update ChangeLog in default branch. check-in: e3d76226d0 user: js tags: trunk
Changes

Modified src/OFSocketObserver.m from [c502161dad] to [7ff6b2b470].

1
2
3
4
5
6
7
8
9
10
11
12


13
14
15
16
17
18
19
/*
 * Copyright (c) 2008 - 2010
 *   Jonathan Schleifer <js@webkeks.org>
 *
 * All rights reserved.
 *
 * This file is part of ObjFW. It may be distributed under the terms of the
 * Q Public License 1.0, which can be found in the file LICENSE included in
 * the packaging of this file.
 */

#include "config.h"



#ifdef OF_HAVE_POLL
# include <poll.h>
#endif

#import "OFSocketObserver.h"
#import "OFDataArray.h"












>
>







1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * Copyright (c) 2008 - 2010
 *   Jonathan Schleifer <js@webkeks.org>
 *
 * All rights reserved.
 *
 * This file is part of ObjFW. It may be distributed under the terms of the
 * Q Public License 1.0, which can be found in the file LICENSE included in
 * the packaging of this file.
 */

#include "config.h"

#include <string.h>

#ifdef OF_HAVE_POLL
# include <poll.h>
#endif

#import "OFSocketObserver.h"
#import "OFDataArray.h"