+2008-03-03 John E. Malmberg <wb8tyw@qsl.net> (tiny change)
+ Bruno Haible <bruno@clisp.org>
+
+ Add VMS support.
+ * lib/alloca.in.h (alloca): Define as alias for DEC C on VMS.
+
2008-03-03 John E. Malmberg <wb8tyw@qsl.net> (tiny change)
Update VMS specifics.
/* 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
# define alloca _alloca
# else
# include <stddef.h>
+# if defined __DECC && defined __VMS
+# define alloca __ALLOCA
+# endif
# ifdef __cplusplus
extern "C"
# endif