annotate modules/mempcpy @ 40231:9b3c79fdfe0b

strtod: fix clash with strtold Problem reported for RHEL 5 by Jesse Caldwell (Bug#34817). * lib/strtod.c (compute_minus_zero, minus_zero): Simplify by remving the macro / external variable, and having just a function. User changed. This avoids the need for an external variable that might clash.
author Paul Eggert <eggert@cs.ucla.edu>
date Mon, 11 Mar 2019 16:40:29 -0700
parents 4158711b2427
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
4436
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Description:
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 mempcpy() function: copy memory area, return point after last written byte.
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 Files:
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 lib/mempcpy.c
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 m4/mempcpy.m4
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 Depends-on:
9209
5a0294ce5372 Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
Eric Blake <ebb9@byu.net>
parents: 9102
diff changeset
9 extensions
7944
a1d177cd9523 * doc/gnulib-tool.texi (Initial import): Update to match current
Paul Eggert <eggert@cs.ucla.edu>
parents: 7497
diff changeset
10 string
4436
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 configure.ac:
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 gl_FUNC_MEMPCPY
15041
4158711b2427 mempcpy: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 9209
diff changeset
14 if test $HAVE_MEMPCPY = 0; then
4158711b2427 mempcpy: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 9209
diff changeset
15 AC_LIBOBJ([mempcpy])
4158711b2427 mempcpy: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 9209
diff changeset
16 gl_PREREQ_MEMPCPY
4158711b2427 mempcpy: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 9209
diff changeset
17 fi
8054
aa8abb5db935 Enforce the use of gnulib modules for unportable <string.h> functions.
Bruno Haible <bruno@clisp.org>
parents: 7944
diff changeset
18 gl_STRING_MODULE_INDICATOR([mempcpy])
4436
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20 Makefile.am:
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22 Include:
7944
a1d177cd9523 * doc/gnulib-tool.texi (Initial import): Update to match current
Paul Eggert <eggert@cs.ucla.edu>
parents: 7497
diff changeset
23 <string.h>
4436
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24
5251
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 4436
diff changeset
25 License:
9102
404dc8725caf Use the synonymous term LGPLv2.
Bruno Haible <bruno@clisp.org>
parents: 8054
diff changeset
26 LGPLv2+
5251
42b53a22aee5 Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents: 4436
diff changeset
27
4436
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 Maintainer:
d556daa10e53 New module 'mempcpy'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29 Simon Josefsson