]> wimlib.net Git - wimlib/blobdiff - src/xpress_decompress.c
Use 'restrict' on pointer arguments to all compress() and decompress() functions
[wimlib] / src / xpress_decompress.c
index 51e781a33bf6bd0057419b5d26bc49e95a4c6766..ec5b1831cd27f24c18bf32a6a329a96b9af4ca26 100644 (file)
@@ -76,8 +76,9 @@
 #define XPRESS_TABLEBITS 12
 
 static int
-xpress_decompress(const void *compressed_data, size_t compressed_size,
-                 void *uncompressed_data, size_t uncompressed_size, void *_ctx)
+xpress_decompress(const void *restrict compressed_data, size_t compressed_size,
+                 void *restrict uncompressed_data, size_t uncompressed_size,
+                 void *restrict _ctx)
 {
        const u8 * const in_begin = compressed_data;
        u8 * const out_begin = uncompressed_data;