newlib: fix errors for GCC 8 support

components/newlib/include/sys/reent.h:405:11: error: unnecessary parentheses in declaration of '_sig_func' [-Werror=parentheses]
   void (**(_sig_func))(int);
           ^
pull/2162/head
Anton Maklakov 2018-05-24 19:09:23 +08:00 zatwierdzone przez bot
rodzic fdee0b64a0
commit 93f6700be7
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -402,7 +402,7 @@ struct _reent
char *_asctime_buf;
/* signal info */
void (**(_sig_func))(int);
void (**_sig_func)(int);
# ifndef _REENT_GLOBAL_ATEXIT
/* atexit stuff */