Turns out I wasn't building the syscall libraries. Do so.
This commit is contained in:
14
plat/linux/libsys/lseek.c
Normal file
14
plat/linux/libsys/lseek.c
Normal file
@@ -0,0 +1,14 @@
|
||||
/* $Source: /cvsroot/tack/Ack/plat/linux386/libsys/lseek.c,v $
|
||||
* $State: Exp $
|
||||
* $Revision: 1.1 $
|
||||
*/
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <errno.h>
|
||||
#include <unistd.h>
|
||||
#include "libsys.h"
|
||||
|
||||
off_t lseek(int fd, off_t offset, int whence)
|
||||
{
|
||||
return _syscall(__NR_lseek, fd, offset, whence);
|
||||
}
|
||||
Reference in New Issue
Block a user