# HG changeset patch # User John E. Malmberg # Date 1204544994 -3600 # Node ID f8cfdd8ba484ce053618a5d9fd215f4255516b2e # Parent 40496da793310446e5c5cffe5102c322253eb81f Add VMS support. diff --git a/ChangeLog b/ChangeLog --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2008-03-03 John E. Malmberg (tiny change) + Bruno Haible + + Add VMS support. + * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS. + 2008-03-03 John E. Malmberg (tiny change) Update VMS specifics. diff --git a/lib/alloca.in.h b/lib/alloca.in.h --- a/lib/alloca.in.h +++ b/lib/alloca.in.h @@ -1,6 +1,6 @@ /* Memory allocation on the stack. - Copyright (C) 1995, 1999, 2001-2004, 2006-2007 Free Software + Copyright (C) 1995, 1999, 2001-2004, 2006-2008 Free Software Foundation, Inc. This program is free software; you can redistribute it and/or modify it @@ -44,6 +44,9 @@ # define alloca _alloca # else # include +# if defined __DECC && defined __VMS +# define alloca __ALLOCA +# endif # ifdef __cplusplus extern "C" # endif