From 432f0014c02e75d87141ff2ce84a04ef480304d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20G=C3=BCndo=C4=9Fan?= Date: Sat, 7 Feb 2015 15:28:10 +0100 Subject: [PATCH] cpu: restrict => __restrict --- cpu/native/include/native_internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/native/include/native_internal.h b/cpu/native/include/native_internal.h index 8a54ef9a43..9a6ac9e453 100644 --- a/cpu/native/include/native_internal.h +++ b/cpu/native/include/native_internal.h @@ -111,7 +111,7 @@ extern int (*real_pipe)(int[2]); /* The ... is a hack to save includes: */ extern int (*real_select)(int nfds, ...); extern int (*real_setitimer)(int which, const struct itimerval - *restrict value, struct itimerval *restrict ovalue); + *__restrict value, struct itimerval *__restrict ovalue); extern int (*real_setsockopt)(int socket, ...); extern int (*real_socket)(int domain, int type, int protocol); extern int (*real_printf)(const char *format, ...);