mirror of
https://git.savannah.gnu.org/git/gnulib.git
synced 2025-08-10 04:43:00 +03:00
Reported by Paul Eggert in <https://lists.gnu.org/archive/html/bug-gnulib/2024-12/msg00193.html>. * modules/bool: Renamed from modules/stdbool-h. * modules/bool-tests: Renamed from modules/stdbool-h-tests. * modules/bool-c++-tests: Renamed from modules/stdbool-h-c++-tests. * tests/test-bool.c: Renamed from tests/test-stdbool-h.c. * tests/test-bool-c++.cc: Renamed from tests/test-stdbool-h-c++.cc. * tests/test-bool-c++2.cc: Renamed from tests/test-stdbool-h-c++2.cc. * modules/stdbool-h-c99-tests: Update. * modules/stdbool-h-c99-c++-tests: Update. * tests/test-stdbool-h-c99.c: Update. * tests/test-stdbool-h-c99-c++.cc: Update. * doc/posix-headers/stdbool.texi: Update. * doc/gnulib-readme.texi: Update. * doc/gnulib.texi: Update. * modules/* (Depends-on): Update. * modules/stdbool: Update.
51 lines
1.1 KiB
Plaintext
51 lines
1.1 KiB
Plaintext
Description:
|
|
Variable-sized buffer with on-stack default allocation.
|
|
|
|
Files:
|
|
lib/scratch_buffer.h
|
|
lib/malloc/scratch_buffer.h
|
|
lib/malloc/scratch_buffer_grow.c
|
|
lib/malloc/scratch_buffer_grow_preserve.c
|
|
lib/malloc/scratch_buffer_set_array_size.c
|
|
|
|
Depends-on:
|
|
c99
|
|
builtin-expect
|
|
gen-header
|
|
libc-config
|
|
bool
|
|
stddef-h
|
|
malloc-posix
|
|
realloc-posix
|
|
free-posix
|
|
|
|
configure.ac:
|
|
AC_PROG_MKDIR_P
|
|
|
|
Makefile.am:
|
|
BUILT_SOURCES += malloc/scratch_buffer.gl.h
|
|
|
|
malloc/scratch_buffer.gl.h: malloc/scratch_buffer.h
|
|
$(AM_V_GEN)$(MKDIR_P) '%reldir%/malloc'
|
|
$(AM_V_at)$(SED_HEADER_STDOUT) \
|
|
-e 's|__always_inline|inline _GL_ATTRIBUTE_ALWAYS_INLINE|g' \
|
|
-e 's|__glibc_likely|_GL_LIKELY|g' \
|
|
-e 's|__glibc_unlikely|_GL_UNLIKELY|g' \
|
|
-e '/libc_hidden_proto/d' \
|
|
$(srcdir)/malloc/scratch_buffer.h > $@-t
|
|
$(AM_V_at)mv $@-t $@
|
|
MOSTLYCLEANFILES += malloc/scratch_buffer.gl.h malloc/scratch_buffer.gl.h-t
|
|
|
|
lib_SOURCES += malloc/scratch_buffer_grow.c \
|
|
malloc/scratch_buffer_grow_preserve.c \
|
|
malloc/scratch_buffer_set_array_size.c
|
|
|
|
Include:
|
|
<scratch_buffer.h>
|
|
|
|
License:
|
|
LGPLv2+
|
|
|
|
Maintainer:
|
|
all, glibc
|