1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 03:40:34 +02:00

Use Gnulib's `stat-time' module; update Gnulib.

This updates Gnulib files to v0.0-4207-gc82b481.

* m4/gnulib-cache.m4: Add `stat-time'.
This commit is contained in:
Ludovic Courtès 2010-09-04 15:16:35 +02:00
parent fb0b64c12a
commit 9157d90102
49 changed files with 1230 additions and 682 deletions

View file

@ -21,8 +21,11 @@
#include <config.h>
/* Only the AC_FUNC_MALLOC macro defines 'malloc' already in config.h. */
#ifdef malloc
# define NEED_MALLOC_GNU
# define NEED_MALLOC_GNU 1
# undef malloc
/* Whereas the gnulib module 'malloc-gnu' defines HAVE_MALLOC_GNU. */
#elif GNULIB_MALLOC_GNU && !HAVE_MALLOC_GNU
# define NEED_MALLOC_GNU 1
#endif
/* Specification. */
@ -41,7 +44,7 @@ rpl_malloc (size_t n)
{
void *result;
#ifdef NEED_MALLOC_GNU
#if NEED_MALLOC_GNU
if (n == 0)
n = 1;
#endif