diff options
Diffstat (limited to 'lib/malloca.c')
-rw-r--r-- | lib/malloca.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/malloca.c b/lib/malloca.c index 39baa5e25..5eb9e12dc 100644 --- a/lib/malloca.c +++ b/lib/malloca.c @@ -21,6 +21,9 @@ /* Specification. */ #include "malloca.h" +/* Use the system functions, not the gnulib overrides in this file. */ +#undef malloc + /* The speed critical point in this file is freea() applied to an alloca() result: it must be fast, to match the speed of alloca(). The speed of mmalloca() and freea() in the other case are not critical, because they |