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:
Chris Friedt 2022-10-28 13:51:06 -04:00 committed by Marti Bolivar
commit 3aff1ff0c2

View file

@ -123,7 +123,9 @@ int open(const char *name, int flags, ...)
return fd; return fd;
} }
#if !defined(CONFIG_NEWLIB_LIBC) && !defined(CONFIG_PICOLIBC)
FUNC_ALIAS(open, _open, int); FUNC_ALIAS(open, _open, int);
#endif
static int fs_close_vmeth(void *obj) static int fs_close_vmeth(void *obj)
{ {