diff options
Diffstat (limited to 'Build/source/utils/texinfo/gnulib/m4/memmove.m4')
-rw-r--r-- | Build/source/utils/texinfo/gnulib/m4/memmove.m4 | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Build/source/utils/texinfo/gnulib/m4/memmove.m4 b/Build/source/utils/texinfo/gnulib/m4/memmove.m4 new file mode 100644 index 00000000000..66054e4416a --- /dev/null +++ b/Build/source/utils/texinfo/gnulib/m4/memmove.m4 @@ -0,0 +1,18 @@ +# memmove.m4 serial 2 +dnl Copyright (C) 2002 Free Software Foundation, Inc. +dnl This file is free software; the Free Software Foundation +dnl gives unlimited permission to copy and/or distribute it, +dnl with or without modifications, as long as this notice is preserved. + +AC_DEFUN([gl_FUNC_MEMMOVE], +[ + AC_REPLACE_FUNCS(memmove) + if test $ac_cv_func_memmove = no; then + gl_PREREQ_MEMMOVE + fi +]) + +# Prerequisites of lib/memmove.c. +AC_DEFUN([gl_PREREQ_MEMMOVE], [ + : +]) |