--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/seek_set.c Fri Oct 19 11:01:15 2007 +0200
@@ -0,0 +1,7 @@
+#include <sys/types.h>
+#include "seek.h"
+
+#define SET 0 /* sigh */
+
+int seek_set(int fd,seek_pos pos)
+{ if (lseek(fd,(off_t) pos,SET) == -1) return -1; return 0; }