29 lines
430 B
Plaintext
29 lines
430 B
Plaintext
Description:
|
|
malloc() function: allocate memory with indefinite extent.
|
|
|
|
Files:
|
|
lib/malloc.c
|
|
m4/malloc.m4
|
|
|
|
Depends-on:
|
|
stdckdint [test $REPLACE_CALLOC_FOR_MALLOC_POSIX = 1]
|
|
stdlib
|
|
|
|
configure.ac:
|
|
AC_REQUIRE([gl_FUNC_MALLOC_POSIX])
|
|
if test $REPLACE_MALLOC_FOR_MALLOC_POSIX = 1; then
|
|
AC_LIBOBJ([malloc])
|
|
fi
|
|
gl_STDLIB_MODULE_INDICATOR([malloc-posix])
|
|
|
|
Makefile.am:
|
|
|
|
Include:
|
|
<stdlib.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
all
|