blob: 339baea290d6e7435919242e791a785c3ac22568 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include <_ansi.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/unistd.h>
#include "trap.h"
off_t
_lseek (int file,
off_t ptr,
int dir)
{
return TRAP0 (SYS_lseek, file, ptr, dir);
}
|