1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

sys/posix: use __restrict instead of restrict

This commit is contained in:
Laurin Wolf 2022-04-28 23:05:42 +02:00
parent 80815edaba
commit 550f5ea1b1

View File

@ -59,7 +59,7 @@ extern "C" {
* @return NULL, if @p size was smaller than needed
* @return NULL, if @p src or @p dst was NULL
*/
const char *inet_ntop(int af, const void *restrict src, char *restrict dst,
const char *inet_ntop(int af, const void *__restrict src, char *__restrict dst,
socklen_t size);
/**