diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 2018-03-18 23:55:09 +0000 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 2018-03-18 23:55:09 +0000 |
commit | 7cec919da585246a86443c57e1f04fc79cce5954 (patch) | |
tree | cafabfdfd6fce21ccbe16aa4834cd703f59863a8 /WWW/Library/Implementation/HTUtils.h | |
parent | e86c1c8ddabde50e52019b5a00026e5e3a73b5e3 (diff) | |
download | lynx-snapshots-7cec919da585246a86443c57e1f04fc79cce5954.tar.gz |
snapshot of project "lynx", label v2-8-9dev_16v
Diffstat (limited to 'WWW/Library/Implementation/HTUtils.h')
-rw-r--r-- | WWW/Library/Implementation/HTUtils.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/WWW/Library/Implementation/HTUtils.h b/WWW/Library/Implementation/HTUtils.h index 17210549..571cc17f 100644 --- a/WWW/Library/Implementation/HTUtils.h +++ b/WWW/Library/Implementation/HTUtils.h @@ -1,5 +1,5 @@ /* - * $LynxId: HTUtils.h,v 1.127 2018/03/11 22:29:50 tom Exp $ + * $LynxId: HTUtils.h,v 1.128 2018/03/17 15:56:11 tom Exp $ * * Utility macros for the W3 code library * MACROS FOR GENERAL USE @@ -23,7 +23,9 @@ #else # ifdef _MSC_VER # include <malloc.h> -# define alloca(size) _alloca(size) +# ifndef alloca +# define alloca(size) _alloca(size) +# endif # else # if HAVE_ALLOCA_H # include <alloca.h> |