devctl.h: Use __restrict not restrict

This commit is contained in:
Joel Sherrill 2017-01-17 16:10:58 -06:00
parent e02866a1b4
commit 96267313e1
1 changed files with 5 additions and 5 deletions

View File

@ -40,11 +40,11 @@
#include <stddef.h>
int posix_devctl(
int fd,
int dcmd,
void *restrict dev_data_ptr,
size_t nbyte,
int *restrict dev_info_ptr
int fd,
int dcmd,
void *__restrict, dev_data_ptr,
size_t nbyte,
int *__restrict, dev_info_ptr
);
#endif