Browse Source

Fixes for pre c99.

Brucey 3 years ago
parent
commit
5e2f0f8e41
1 changed files with 1 additions and 1 deletions
  1. 1 1
      libuuid.mod/include/strutils.h

+ 1 - 1
libuuid.mod/include/strutils.h

@@ -46,7 +46,7 @@ extern int isxdigit_strend(const char *str, const char **end);
 extern int parse_switch(const char *arg, const char *errmesg, ...);
 
 #ifndef HAVE_MEMPCPY
-extern void *mempcpy(void *restrict dest, const void *restrict src, size_t n);
+extern void *mempcpy(void * dest, const void * src, size_t n);
 #endif
 #ifndef HAVE_STRNLEN
 extern size_t strnlen(const char *s, size_t maxlen);