Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoel Sherrill <joel@rtems.org>2017-01-18 01:10:58 +0300
committerJoel Sherrill <joel@rtems.org>2017-01-18 01:10:58 +0300
commit96267313e1ec5cdd85a4dc3a30a43fce8d8824a2 (patch)
tree7802c49d5aa05723171b0053353fdcba0f1d8a1b /newlib/libc/include/devctl.h
parente02866a1b43fae39d6842bd182de79e54d8e74cd (diff)
devctl.h: Use __restrict not restrict
Diffstat (limited to 'newlib/libc/include/devctl.h')
-rw-r--r--newlib/libc/include/devctl.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/include/devctl.h b/newlib/libc/include/devctl.h
index e6d987545..13207ec88 100644
--- a/newlib/libc/include/devctl.h
+++ b/newlib/libc/include/devctl.h
@@ -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