1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Copyright (c) 2017 Cyril Hrubis <chrubis@suse.cz> 4 */ 5 6 #ifndef LAPI_SEEK_H__ 7 #define LAPI_SEEK_H__ 8 9 #include <unistd.h> 10 11 #ifndef SEEK_DATA 12 # define SEEK_DATA 3 13 #endif 14 15 #ifndef SEEK_HOLE 16 # define SEEK_HOLE 4 17 #endif 18 19 #endif /* LAPI_SEEK_H__ */ 20