Home | History | Annotate | Line # | Download | only in gen
Lint_frexp.c revision 1.2
      1  1.2  christos /*	$NetBSD: Lint_frexp.c,v 1.2 1998/12/02 09:47:20 christos Exp $	*/
      2  1.1  matthias 
      3  1.1  matthias /*
      4  1.1  matthias  * This file placed in the public domain.
      5  1.1  matthias  * Matthias Pfaller, December 6, 1997.
      6  1.1  matthias  */
      7  1.1  matthias 
      8  1.1  matthias #include <math.h>
      9  1.1  matthias 
     10  1.2  christos /*ARGSUSED*/
     11  1.1  matthias double
     12  1.1  matthias frexp(value, eptr)
     13  1.1  matthias 	double value;
     14  1.1  matthias 	int *eptr;
     15  1.1  matthias {
     16  1.1  matthias 	return(0);
     17  1.1  matthias }
     18