posix: fs: avoid adding open() alias with newlib and picolibc
Newlib and PicoLibc both already alias `open` to `_open`. Signed-off-by: Chris Friedt <cfriedt@meta.com>
This commit is contained in:
parent
e431cfbbe5
commit
3aff1ff0c2
@ -123,7 +123,9 @@ int open(const char *name, int flags, ...)
|
||||
return fd;
|
||||
}
|
||||
|
||||
#if !defined(CONFIG_NEWLIB_LIBC) && !defined(CONFIG_PICOLIBC)
|
||||
FUNC_ALIAS(open, _open, int);
|
||||
#endif
|
||||
|
||||
static int fs_close_vmeth(void *obj)
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user