/* * Copyright (c) 2006-2021, RT-Thread Development Team * * SPDX-License-Identifier: Apache-2.0 * * Change Logs: * Date Author Notes * 2015-01-28 Bernard first version */ #include #include #include #pragma module_name = "?__close" int __close(int handle) { if (handle == _LLIO_STDOUT || handle == _LLIO_STDERR || handle == _LLIO_STDIN) return _LLIO_ERROR; #ifdef RT_USING_POSIX return close(handle); #else return _LLIO_ERROR; #endif /* RT_USING_POSIX */ }