xref: /haiku/src/system/libroot/posix/stdio/_fseek.c (revision 8728f4797fcb3e99b6e1ec2629efbf4119c37497)
1 /*
2 ** Copyright 2005, Jérôme Duval. All rights reserved.
3 ** Distributed under the terms of the MIT License.
4 */
5 
6 #include <stdio.h>
7 
8 int
9 _fseek(FILE *stream, fpos_t offset, int seekType)
10 {
11 	return fseeko(stream, offset, seekType);
12 }
13