aboutsummaryrefslogtreecommitdiff
path: root/include/stdio.h
diff options
context:
space:
mode:
authorPawel Jakub Dawidek <pjd@FreeBSD.org>2007-04-05 21:10:53 +0000
committerPawel Jakub Dawidek <pjd@FreeBSD.org>2007-04-05 21:10:53 +0000
commitf6521d1c31810b096dd15afff12cf194d1989a0a (patch)
treec358a7e9b774044c343bcf2b36dc569901065d03 /include/stdio.h
parentf3a8d2f93ce69707ed05a48e89d884046f2d8a6a (diff)
Notes
Diffstat (limited to 'include/stdio.h')
-rw-r--r--include/stdio.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/stdio.h b/include/stdio.h
index 348db22e181c..bf014293530f 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -200,6 +200,12 @@ __END_DECLS
#ifndef SEEK_END
#define SEEK_END 2 /* set file offset to EOF plus offset */
#endif
+#ifndef SEEK_DATA
+#define SEEK_DATA 3 /* set file offset to next data past offset */
+#endif
+#ifndef SEEK_HOLE
+#define SEEK_HOLE 4 /* set file offset to next hole past offset */
+#endif
#define stdin __stdinp
#define stdout __stdoutp