OSDN Git Service

r288@cf-ppc-macosx: monabuilder | 2008-12-07 13:17:34 +0900
[pf3gnuchains/pf3gnuchains3x.git] / libgloss / libnosys / lseek.c
1 /*
2  * Stub version of lseek.
3  */
4
5 #include "config.h"
6 #include <_ansi.h>
7 #include <_syslist.h>
8 #include <errno.h>
9 #undef errno
10 extern int errno;
11 #include "warning.h"
12
13 int
14 _DEFUN (_lseek, (file, ptr, dir),
15         int   file  _AND
16         int   ptr   _AND
17         int   dir)
18 {
19   errno = ENOSYS;
20   return -1;
21 }
22
23 stub_warning(_lseek)