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.
22 lines
381 B
22 lines
381 B
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* Copyright (c) 2019 Linaro Limited. All rights reserved.
|
|
* Author: Sumit Garg <sumit.garg@linaro.org>
|
|
*/
|
|
|
|
#ifndef SYNCFS_H
|
|
#define SYNCFS_H
|
|
|
|
#include "config.h"
|
|
#include <sys/types.h>
|
|
#include "lapi/syscalls.h"
|
|
|
|
#if !defined(HAVE_SYNCFS)
|
|
int syncfs(int fd)
|
|
{
|
|
return tst_syscall(__NR_syncfs, fd);
|
|
}
|
|
#endif
|
|
|
|
#endif /* SYNCFS_H */
|