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.
19 lines
340 B
19 lines
340 B
/*
|
|
* Copyright (c) 2006-2023, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
*/
|
|
|
|
#ifndef DFS_PRIVATE_H__
|
|
#define DFS_PRIVATE_H__
|
|
|
|
#include <dfs.h>
|
|
|
|
#define NO_WORKING_DIR "system does not support working directory\n"
|
|
|
|
extern char working_directory[];
|
|
|
|
#endif
|
|
|