Commit 216963b9 216963b9769c2f798ea555b05dbbf9c90075c0de by Sergey Poznyakoff

Define __restrict_arr to empty string unless it was already defined elsewhere.

1 parent 9dd12f5e
...@@ -531,6 +531,10 @@ extern int re_exec _RE_ARGS ((const char *)); ...@@ -531,6 +531,10 @@ extern int re_exec _RE_ARGS ((const char *));
531 # endif 531 # endif
532 #endif 532 #endif
533 533
534 #ifndef __restrict_arr
535 # define __restrict_arr
536 #endif
537
534 /* POSIX compatibility. */ 538 /* POSIX compatibility. */
535 extern int regcomp _RE_ARGS ((regex_t *__restrict __preg, 539 extern int regcomp _RE_ARGS ((regex_t *__restrict __preg,
536 const char *__restrict __pattern, 540 const char *__restrict __pattern,
......