From: John E. Malmberg Date: Mon, 3 Mar 2008 11:49:54 +0000 (+0100) Subject: Add VMS support. X-Git-Tag: v0.1~7700 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=79edddd850ad6fa0a9ecd3611b1e26a1e62d4ceb;p=gnulib.git Add VMS support. --- diff --git a/ChangeLog b/ChangeLog index b32827a0c..99cb4d259 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,10 @@ 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. * lib/getopt.c [VMS]: Remove include of unixlib.h. diff --git a/lib/alloca.in.h b/lib/alloca.in.h index af274b9e7..8be3e69f5 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