1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-18 12:52:44 +01:00

cpu: restrict => __restrict

This commit is contained in:
Cenk Gündoğan 2015-02-07 15:28:10 +01:00
parent 7fc721e277
commit 432f0014c0

View File

@ -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, ...);