diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-11-29 21:38:11 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2005-11-29 21:38:11 +0000 |
commit | 8ba12d8ed84d3d42d3ad59ac0024920eee1f104f (patch) | |
tree | d7767e71a456c96a85e9a7a8aee6e9f12abf8405 /lib/libc/arch/hppa | |
parent | 38a2236fc62bb5b4520eb994ab1f5bd8c5942f50 (diff) |
if we pull in a .S file, we must fake out the lint with a .c file
for this first cut, we will do this for alloca() using alloca.c by
adding it to LSRCS
Diffstat (limited to 'lib/libc/arch/hppa')
-rw-r--r-- | lib/libc/arch/hppa/gen/Makefile.inc | 3 |
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 84702caffb7..895ddfdefff 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.7 2005/02/01 15:12:29 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.8 2005/11/29 21:38:08 deraadt Exp $ SRCS+= setjmp.S SRCS+= fabs.c ldexp.c @@ -6,4 +6,5 @@ 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 |