summaryrefslogtreecommitdiff
path: root/engines/e_padlock.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2008-01-03 22:43:04 +0000
committerDr. Stephen Henson <steve@openssl.org>2008-01-03 22:43:04 +0000
commiteef0c1f34c7b7d6a38e02f3294eb509aef081749 (patch)
treefb49441433ca3bf20230eeeca5a6e423a9888174 /engines/e_padlock.c
parent82a243132723ac27a81d689722e94e05e18992a0 (diff)
downloadopenssl-new-eef0c1f34c7b7d6a38e02f3294eb509aef081749.tar.gz
Netware support.
Submitted by: Guenter Knauf <eflash@gmx.net>
Diffstat (limited to 'engines/e_padlock.c')
-rw-r--r--engines/e_padlock.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/e_padlock.c b/engines/e_padlock.c
index 20d458c1c1..64a13e754c 100644
--- a/engines/e_padlock.c
+++ b/engines/e_padlock.c
@@ -128,6 +128,9 @@ void ENGINE_load_padlock (void)
# ifndef alloca
# define alloca _alloca
# endif
+#elif defined(NETWARE_CLIB) && defined(__GNUC__)
+ void *alloca(size_t);
+# define alloca(s) __builtin_alloca(s)
#else
# include <stdlib.h>
#endif