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/i386 | |
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/i386')
-rw-r--r-- | lib/libc/arch/i386/gen/Makefile.inc | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/libc/arch/i386/gen/Makefile.inc b/lib/libc/arch/i386/gen/Makefile.inc index 07d92a37cda..fcde8b3176a 100644 --- a/lib/libc/arch/i386/gen/Makefile.inc +++ b/lib/libc/arch/i386/gen/Makefile.inc @@ -1,7 +1,9 @@ -# $OpenBSD: Makefile.inc,v 1.4 2005/02/01 15:12:29 millert Exp $ +# $OpenBSD: Makefile.inc,v 1.5 2005/11/29 21:38:09 deraadt Exp $ SRCS+= _setjmp.S alloca.S fabs.S infinity.c isinf.c isnan.c ldexp.c \ modf.S setjmp.S sigsetjmp.S SRCS+= flt_rounds.S fpgetmask.S fpgetround.S fpgetsticky.S fpsetmask.S \ fpsetround.S fpsetsticky.S SRCS+= divsi3.S fixdfsi.S fixunsdfsi.S udivsi3.S + +LSRCS+= alloca.c |