Fixes a problem where a function was not overloaded

This commit is contained in:
Gerhard Stein
2020-09-19 09:58:22 +00:00
parent abb3f4196b
commit 702329a932

View File

@@ -148,6 +148,9 @@ char *getwd ();
# if VMS
# define getcwd(buf, max) (getcwd) (buf, max, 0)
# else
# ifdef __ANDROID__
# define __attribute__((overloadable))
# endif
char *getcwd ();
# endif
# endif