Hide SEEK_DATA and SEEK_HOLE under __BSD_VISIBLE.

Suggested by:	ache
This commit is contained in:
Pawel Jakub Dawidek 2007-04-07 18:31:40 +00:00
parent 7b88fb86e3
commit 2b6271b7f2

View File

@ -108,7 +108,7 @@
#define SEEK_CUR 1 /* set file offset to current plus offset */
#define SEEK_END 2 /* set file offset to EOF plus offset */
#endif
#if !defined(_POSIX_SOURCE) && !defined(_XOPEN_SOURCE)
#if __BSD_VISIBLE
#define SEEK_DATA 3 /* set file offset to next data past offset */
#define SEEK_HOLE 4 /* set file offset to next hole past offset */
#endif