plan9port

fork of plan9port with libvec, libstr and libsdb
Log | Files | Refs | README | LICENSE

frexp.c (115B)


      1 #include <u.h>
      2 #define NOPLAN9DEFINES
      3 #include <libc.h>
      4 
      5 double
      6 p9frexp(double d, int *i)
      7 {
      8 	return frexp(d, i);
      9 }