You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
293 B
20 lines
293 B
// 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__ */
|