mirror of
https://github.com/opnsense/src.git
synced 2026-06-10 17:22:46 -04:00
Hide SEEK_DATA and SEEK_HOLE under __BSD_VISIBLE.
Suggested by: ache
This commit is contained in:
parent
7b88fb86e3
commit
2b6271b7f2
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue