20 lines
293 B
C
20 lines
293 B
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2017 Cyril Hrubis <chrubis@suse.cz>
|
|
*/
|
|
|
|
#ifndef LAPI_SEEK_H__
|
|
#define LAPI_SEEK_H__
|
|
|
|
#include <unistd.h>
|
|
|
|
#ifndef SEEK_DATA
|
|
# define SEEK_DATA 3
|
|
#endif
|
|
|
|
#ifndef SEEK_HOLE
|
|
# define SEEK_HOLE 4
|
|
#endif
|
|
|
|
#endif /* LAPI_SEEK_H__ */
|