ObjFW  Check-in [5870131a84]

Overview
Comment:Include sys/types.h for off_t.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 5870131a84cd0b0f27481cc735ae400f6ceafc6271cb3ef2f10030a22f065945
User & Date: js on 2011-07-10 17:43:39
Other Links: manifest | tags
Context
2011-07-10
18:44
Include sys/types.h in objc_sync.m. check-in: 47f179bc09 user: js tags: trunk
17:43
Include sys/types.h for off_t. check-in: 5870131a84 user: js tags: trunk
03:19
Include objc/runtime.h when using the new GNU runtime. check-in: 19bb966105 user: js tags: trunk
Changes

Modified src/OFSeekableStream.h from [9a400a86be] to [09e4c069c6].

10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
 *
 * Alternatively, it may be distributed under the terms of the GNU General
 * Public License, either version 2 or 3, which can be found in the file
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */

/* Required to prevent a name conflict in glibc when using -fblocks */
#undef __USE_XOPEN

#include <unistd.h>

#import "OFStream.h"

/**
 * \brief A stream that supports seeking.
 *
 * IMPORTANT: If you want to subclass this, override _seekToOffset:,







<
<
<
|







10
11
12
13
14
15
16



17
18
19
20
21
22
23
24
 *
 * Alternatively, it may be distributed under the terms of the GNU General
 * Public License, either version 2 or 3, which can be found in the file
 * LICENSE.GPLv2 or LICENSE.GPLv3 respectively included in the packaging of this
 * file.
 */




#include <sys/types.h>

#import "OFStream.h"

/**
 * \brief A stream that supports seeking.
 *
 * IMPORTANT: If you want to subclass this, override _seekToOffset:,