Use 'magick_restrict' instead of 'restrict'.
diff --git a/coders/webp.c b/coders/webp.c
index c598f83..e994886 100644
--- a/coders/webp.c
+++ b/coders/webp.c
@@ -139,7 +139,8 @@
%
*/
-static inline uint32_t ReadWebPLSBWord(const unsigned char *restrict data)
+static inline uint32_t ReadWebPLSBWord(
+ const unsigned char *magick_restrict data)
{
register const unsigned char
*p;
@@ -230,10 +231,10 @@
configure;
WebPDecBuffer
- *restrict webp_image = &configure.output;
+ *magick_restrict webp_image = &configure.output;
WebPBitstreamFeatures
- *restrict features = &configure.input;
+ *magick_restrict features = &configure.input;
/*
Open image file.
@@ -513,7 +514,7 @@
*pixel_info;
register uint32_t
- *restrict q;
+ *magick_restrict q;
ssize_t
y;
@@ -658,7 +659,7 @@
for (y=0; y < (ssize_t) image->rows; y++)
{
register const Quantum
- *restrict p;
+ *magick_restrict p;
register ssize_t
x;