Skip to content
Snippets Groups Projects
Commit 7309084c authored by Christoph Hellwig's avatar Christoph Hellwig
Browse files

add a mallopt() stub

parent 9db335a1
No related branches found
No related tags found
No related merge requests found
......@@ -84,7 +84,7 @@ extern "C" {
__locale_t __l) __THROW __nonnull ((2, 4));
size_t __wcsxfrm_l(wchar_t *__s1, __const wchar_t *__s2,
size_t __n, __locale_t __loc) __THROW;
int mallopt(int param, int value);
}
void *__dso_handle;
......@@ -620,6 +620,12 @@ size_t confstr(int name, char* buf, size_t len)
abort();
}
int mallopt(int param, int value)
{
debug(fmt("mallopt: unimplemented paramater %1%") % param);
return 0;
}
long timezone;
char* __environ_array[1];
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment