1da2e3ebdSchin /***********************************************************************
2da2e3ebdSchin *                                                                      *
3da2e3ebdSchin *               This software is part of the ast package               *
4*b30d1939SAndy Fiddaman *          Copyright (c) 1985-2011 AT&T Intellectual Property          *
5da2e3ebdSchin *                      and is licensed under the                       *
6*b30d1939SAndy Fiddaman *                 Eclipse Public License, Version 1.0                  *
77c2fbfb3SApril Chin *                    by AT&T Intellectual Property                     *
8da2e3ebdSchin *                                                                      *
9da2e3ebdSchin *                A copy of the License is available at                 *
10*b30d1939SAndy Fiddaman *          http://www.eclipse.org/org/documents/epl-v10.html           *
11*b30d1939SAndy Fiddaman *         (with md5 checksum b35adb5213ca9657e911e9befb180842)         *
12da2e3ebdSchin *                                                                      *
13da2e3ebdSchin *              Information and Software Systems Research               *
14da2e3ebdSchin *                            AT&T Research                             *
15da2e3ebdSchin *                           Florham Park NJ                            *
16da2e3ebdSchin *                                                                      *
17da2e3ebdSchin *                 Glenn Fowler <gsf@research.att.com>                  *
18da2e3ebdSchin *                  David Korn <dgk@research.att.com>                   *
19da2e3ebdSchin *                   Phong Vo <kpv@research.att.com>                    *
20da2e3ebdSchin *                                                                      *
21da2e3ebdSchin ***********************************************************************/
22da2e3ebdSchin #pragma prototyped
23da2e3ebdSchin 
24da2e3ebdSchin #ifndef _NO_LARGEFILE64_SOURCE
25da2e3ebdSchin #define _NO_LARGEFILE64_SOURCE	1
26da2e3ebdSchin #endif
27da2e3ebdSchin 
28da2e3ebdSchin #include "stdhdr.h"
29da2e3ebdSchin 
30da2e3ebdSchin int
fseek(Sfio_t * f,long off,int op)31da2e3ebdSchin fseek(Sfio_t* f, long off, int op)
32da2e3ebdSchin {
33da2e3ebdSchin 	STDIO_INT(f, "fseek", int, (Sfio_t*, long, int), (f, off, op))
34da2e3ebdSchin 
35da2e3ebdSchin 	return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1;
36da2e3ebdSchin }
37da2e3ebdSchin 
38da2e3ebdSchin #ifdef _typ_int64_t
39da2e3ebdSchin 
40da2e3ebdSchin int
fseek64(Sfio_t * f,int64_t off,int op)41da2e3ebdSchin fseek64(Sfio_t* f, int64_t off, int op)
42da2e3ebdSchin {
43da2e3ebdSchin 	STDIO_INT(f, "fseek64", int, (Sfio_t*, int64_t, int), (f, off, op))
44da2e3ebdSchin 
45da2e3ebdSchin 	return sfseek(f, (Sfoff_t)off, op|SF_SHARE) >= 0 ? 0 : -1;
46da2e3ebdSchin }
47da2e3ebdSchin 
48da2e3ebdSchin #endif
49