Export the 'free' standard C function for use in the test suite.

This commit is contained in:
Thomas Heller 2006-05-05 18:42:14 +00:00
parent 08041d582b
commit 21a929f5ab
1 changed files with 5 additions and 0 deletions

View File

@ -96,6 +96,11 @@ EXPORT(char *) my_strdup(char *src)
return dst;
}
EXPORT(void) free(void *ptr)
{
free(ptr);
}
#ifdef HAVE_WCHAR_H
EXPORT(wchar_t *) my_wcsdup(wchar_t *src)
{