06a9b1ee7ec76d1a40ce92f3f084e8e5e54ac88f
[gnulib.git] / m4 / memrchr.m4
1 # memrchr.m4 serial 3
2 dnl Copyright (C) 2002, 2003 Free Software Foundation, Inc.
3 dnl This file is free software; the Free Software Foundation
4 dnl gives unlimited permission to copy and/or distribute it,
5 dnl with or without modifications, as long as this notice is preserved.
6
7 AC_DEFUN([gl_FUNC_MEMRCHR],
8 [
9   dnl Persuade glibc <string.h> to declare memrchr().
10   AC_REQUIRE([AC_GNU_SOURCE])
11
12   AC_REPLACE_FUNCS(memrchr)
13   if test $ac_cv_func_memrchr = no; then
14     gl_PREREQ_MEMRCHR
15   fi
16 ])
17
18 # Prerequisites of lib/memrchr.c.
19 AC_DEFUN([gl_PREREQ_MEMRCHR], [:])