X-Git-Url: https://erislabs.net/gitweb/?a=blobdiff_plain;f=lib%2Fxmalloca.h;h=1a5fb6d0703fb26d4409efa348d26eac50cc26e6;hb=692a15c587c6d741cba6423319efcc957c45c9cb;hp=bd4c5a91764e576618bf499054ccbb1c4e505348;hpb=a464478ce70f993f9618ba446eaf68e11e13edee;p=gnulib.git diff --git a/lib/xmalloca.h b/lib/xmalloca.h index bd4c5a917..1a5fb6d07 100644 --- a/lib/xmalloca.h +++ b/lib/xmalloca.h @@ -1,5 +1,5 @@ /* Safe automatic memory allocation with out of memory checking. - Copyright (C) 2003, 2005, 2007 Free Software Foundation, Inc. + Copyright (C) 2003, 2005, 2007, 2009, 2010 Free Software Foundation, Inc. Written by Bruno Haible , 2003. This program is free software: you can redistribute it and/or modify @@ -32,7 +32,7 @@ extern "C" { the function returns. Upon failure, it exits with an error message. */ #if HAVE_ALLOCA # define xmalloca(N) \ - ((N) < 4032 - sa_increment \ + ((N) < 4032 - sa_increment \ ? (void *) ((char *) alloca ((N) + sa_increment) + sa_increment) \ : xmmalloca (N)) extern void * xmmalloca (size_t n);