home *** CD-ROM | disk | FTP | other *** search
- /* sys/lseek.c (emx+gcc) -- Copyright (c) 1992-1993 by Eberhard Mattes */
-
- #include <sys/emx.h>
- #include <os2emx.h>
- #include "syscalls.h"
-
- int __lseek (int handle, long offset, int origin)
- {
- ULONG rc;
- ULONG new;
-
- rc = DosSetFilePtr (handle, offset, origin, &new);
- if (rc == 0)
- return ((int)new);
- else
- {
- _sys_set_errno (rc);
- return (-1);
- }
- }
-