blob: 783909104819ca8fa63df79fcda72bc2c1652cdc (
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);
}
|