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