[BACK]Return to Lint_ldexp.c CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / lib / libc / gen

Annotation of src/lib/libc/gen/Lint_ldexp.c, Revision 1.2

1.2     ! christos    1: /*     $NetBSD: Lint_ldexp.c,v 1.1 1997/12/07 00:24:50 matthias Exp $  */
1.1       matthias    2:
                      3: /*
                      4:  * This file placed in the public domain.
                      5:  * Matthias Pfaller, December 6, 1997.
                      6:  */
                      7:
                      8: #include <math.h>
                      9:
1.2     ! christos   10: /*ARGSUSED*/
1.1       matthias   11: double
                     12: ldexp(val, exp)
                     13:        double val;
                     14:        int exp;
                     15: {
                     16:        return(0);
                     17: }

CVSweb <webmaster@jp.NetBSD.org>