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

@ -42,9 +42,9 @@
int posix_devctl( int posix_devctl(
int fd, int fd,
int dcmd, int dcmd,
void *restrict dev_data_ptr, void *__restrict, dev_data_ptr,
size_t nbyte, size_t nbyte,
int *restrict dev_info_ptr int *__restrict, dev_info_ptr
); );
#endif #endif