summaryrefslogtreecommitdiff
path: root/lib/malloca.h
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2012-08-27 22:57:47 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2012-09-22 01:58:22 -0700
commit216e340ed6ef2c0882911d351aa7c3703b347613 (patch)
tree99de77da079689f1cdbe2431fe4cb0d634c0ea67 /lib/malloca.h
parent0e9bac3a27f8e956911b787329bec6bf81d9c004 (diff)
downloadgnulib-216e340ed6ef2c0882911d351aa7c3703b347613.tar.gz
misc: don't limit commentary to inline functions
* lib/binary-io.h, lib/malloca.h, lib/safe-alloc.c: * lib/xalloc-oversized.h, lib/xsize.h: Contrast macros to functions in general, not just to inline functions, when the commentary does not apply only to inline functions.
Diffstat (limited to 'lib/malloca.h')
-rw-r--r--lib/malloca.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/malloca.h b/lib/malloca.h
index 4b60cbae78..89f8c0f1ae 100644
--- a/lib/malloca.h
+++ b/lib/malloca.h
@@ -42,7 +42,7 @@ extern "C" {
and a page size can be as small as 4096 bytes. So we cannot safely
allocate anything larger than 4096 bytes. Also care for the possibility
of a few compiler-allocated temporary stack slots.
- This must be a macro, not an inline function. */
+ This must be a macro, not a function. */
# define safe_alloca(N) ((N) < 4032 ? alloca (N) : NULL)
#else
# define safe_alloca(N) ((void) (N), NULL)