Cygwin: access: Fix X_OK behaviour for backup operators and admins
[newlib-cygwin.git] / newlib / libc / machine / powerpc / vec_realloc.c
blobdb6f3206099ca9d0393ec15190db3c267f7f7ac6
1 /* vec_realloc.c -- a wrapper for _vec_realloc_r. */
3 #include <_ansi.h>
4 #include <reent.h>
5 #include <stdlib.h>
7 #ifndef _REENT_ONLY
9 void *
10 vec_realloc (void *ap,
11 size_t nbytes)
13 return _vec_realloc_r (_REENT, ap, nbytes);
16 #endif