* include/cygwin/stdlib.h (valloc): Declare.

(memalign): Declare.
This commit is contained in:
Corinna Vinschen
2007-02-13 18:55:49 +00:00
parent b8c26111a4
commit af52f2802f
2 changed files with 8 additions and 0 deletions

View File

@ -39,6 +39,9 @@ int posix_memalign (void **, size_t, size_t);
#define _unsetenv_r UNUSED__unsetenv_r
#endif
extern _PTR memalign _PARAMS ((size_t, size_t));
extern _PTR valloc _PARAMS ((size_t));
#undef _malloc_r
#define _malloc_r(r, s) malloc (s)
#undef _free_r