2011-10-08 22:50:08 +08:00
|
|
|
/*
|
2021-03-08 18:19:04 +08:00
|
|
|
* Copyright (c) 2006-2021, RT-Thread Development Team
|
2011-10-08 22:50:08 +08:00
|
|
|
*
|
2018-10-29 11:06:58 +08:00
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2011-10-08 22:50:08 +08:00
|
|
|
*
|
|
|
|
* Change Logs:
|
|
|
|
* Date Author Notes
|
|
|
|
* 2009-05-27 Yi.qiu The first version.
|
2017-10-15 22:44:53 +08:00
|
|
|
* 2010-07-18 Bernard add stat and statfs structure definitions.
|
2011-10-08 22:50:08 +08:00
|
|
|
* 2011-05-16 Yi.qiu Change parameter name of rename, "new" is C++ key word.
|
2017-12-31 14:46:24 +08:00
|
|
|
* 2017-12-27 Bernard Add fcntl API.
|
2018-02-07 19:49:31 +08:00
|
|
|
* 2018-02-07 Bernard Change the 3rd parameter of open/fcntl/ioctl to '...'
|
2011-10-08 22:50:08 +08:00
|
|
|
*/
|
2017-10-15 22:44:53 +08:00
|
|
|
|
2011-10-08 22:50:08 +08:00
|
|
|
#ifndef __DFS_POSIX_H__
|
|
|
|
#define __DFS_POSIX_H__
|
|
|
|
|
|
|
|
#include <dfs_file.h>
|
2021-09-12 03:34:59 +08:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdio.h> /* rename() */
|
2021-09-11 11:07:51 +08:00
|
|
|
#include <sys/stat.h>
|
2021-09-12 03:34:59 +08:00
|
|
|
#include <sys/statfs.h> /* statfs() */
|
2011-10-08 22:50:08 +08:00
|
|
|
|
2015-05-02 22:53:08 +08:00
|
|
|
#endif
|