ObjFW  Check-in [f9b89feb5a]

Overview
Comment:Include sys/types.h for off_t.
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | 0.5
Files: files | file ages | folders
SHA3-256: f9b89feb5a0a3d2d9019c1543f324367a14d4857c170a89aa6851a95b43ab8de
User & Date: js on 2011-07-10 17:43:39
Other Links: branch diff | manifest | tags
Context
2011-07-10
18:44
Include sys/types.h in objc_sync.m. check-in: 0f4a81649d user: js tags: 0.5
17:43
Include sys/types.h for off_t. check-in: f9b89feb5a user: js tags: 0.5
03:19
Include objc/runtime.h when using the new GNU runtime. check-in: 5c6e2b3362 user: js tags: 0.5
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:,