summaryrefslogtreecommitdiff
path: root/src/include/compat.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/include/compat.h')
-rw-r--r--src/include/compat.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/compat.h b/src/include/compat.h
index 1a1103a81..19badcefc 100644
--- a/src/include/compat.h
+++ b/src/include/compat.h
@@ -41,11 +41,11 @@ extern "C"
41 * @param n search character limit 41 * @param n search character limit
42 */ 42 */
43void* 43void*
44GN_memrchr_(const void *s, 44GN_memrchr_ (const void *s,
45 int c, 45 int c,
46 size_t n); 46 size_t n);
47#ifndef HAVE_MEMRCHR 47#ifndef HAVE_MEMRCHR
48#define memrchr(s, c, n) GN_memrchr_(s, c, n) 48#define memrchr(s, c, n) GN_memrchr_ (s, c, n)
49#endif 49#endif
50 50
51#ifdef __cplusplus 51#ifdef __cplusplus