1 #include "stdio_impl.h"
2 
__stdio_seek(FILE * f,off_t off,int whence)3 off_t __stdio_seek(FILE *f, off_t off, int whence)
4 {
5 	/* TRUSTY - no seek */
6 	return -1;
7 }
8