summaryrefslogtreecommitdiff
path: root/lib/libc/arch/hppa/gen
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-05-02 19:20:27 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-05-02 19:20:27 +0000
commit805ef5a0e29b1440bef7df44bd19e613762170c6 (patch)
treeb6d5a0ba027ef2dcb0c640c3c50afe0b502216bf /lib/libc/arch/hppa/gen
parent81138b1756e772c36615fbbdc27a8c0ea1a19c3f (diff)
Add Doug Gwyn's portable alloca() for platforms w/o an assembler
version. Normally, gcc provides its own alloca() (unless -fno-builtin is specified). The C version is decidedly suboptimal--we really need proper assembler versions but this will work as a stop-gap measure.
Diffstat (limited to 'lib/libc/arch/hppa/gen')
-rw-r--r--lib/libc/arch/hppa/gen/Makefile.inc3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/arch/hppa/gen/Makefile.inc b/lib/libc/arch/hppa/gen/Makefile.inc
index 26a255cdba7..e59f0cd20ff 100644
--- a/lib/libc/arch/hppa/gen/Makefile.inc
+++ b/lib/libc/arch/hppa/gen/Makefile.inc
@@ -1,4 +1,4 @@
-# $OpenBSD: Makefile.inc,v 1.5 2002/05/17 18:41:02 mickey Exp $
+# $OpenBSD: Makefile.inc,v 1.6 2003/05/02 19:20:26 millert Exp $
SRCS+= setjmp.S
SRCS+= fabs.c frexp.c ldexp.c
@@ -6,3 +6,4 @@ SRCS+= isnan.c isinf.c infinity.c setjmp.S
SRCS+= flt_rounds.c fpgetmask.c fpgetround.c fpgetsticky.c fpsetmask.c \
fpsetround.c fpsetsticky.c
SRCS+= modf.c
+SRCS+= alloca.c