From 79edddd850ad6fa0a9ecd3611b1e26a1e62d4ceb Mon Sep 17 00:00:00 2001 From: "John E. Malmberg" Date: Mon, 3 Mar 2008 12:49:54 +0100 Subject: [PATCH] Add VMS support. --- ChangeLog | 6 ++++++ lib/alloca.in.h | 5 ++++- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index b32827a0c2..99cb4d259b 100644 --- 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 index af274b9e75..8be3e69f52 100644 --- 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 -- 2.30.2