2009-09-22 Ralf Corsépius <ralf.corsepius@rtems.org>

* libc/include/stdlib.h: Add posix_memalign.
This commit is contained in:
Jeff Johnston 2009-09-22 21:49:20 +00:00
parent bdb08ed44f
commit 2ad8d17a16
2 changed files with 8 additions and 0 deletions

View File

@ -1,3 +1,7 @@
2009-09-22 Ralf Corsépius <ralf.corsepius@rtems.org>
* libc/include/stdlib.h: Add posix_memalign.
2009-09-22 Ralf Corsépius <ralf.corsepius@rtems.org>
* configure.host (*-rtems*): Remove -DMISSING_SYSCALL_NAMES.

View File

@ -189,6 +189,10 @@ int _EXFUN(unsetenv,(const char *__string));
int _EXFUN(_unsetenv_r,(struct _reent *, const char *__string));
#endif
#ifdef __rtems__
int _EXFUN(posix_memalign,(void **, size_t, size_t));
#endif
#endif /* ! __STRICT_ANSI__ */
char * _EXFUN(_dtoa_r,(struct _reent *, double, int, int, int *, int*, char**));