Path: utzoo!utgpu!jarvis.csri.toronto.edu!mailrus!csd4.milw.wisc.edu!uxc!garcon!garcon.cso.uiuc.edu!grunwald From: grunwald@guitar.cs.uiuc.edu Newsgroups: gnu.gcc.bug Subject: inline math.h Message-ID: Date: 24 Mar 89 14:45:02 GMT Sender: news@garcon.cso.uiuc.edu Distribution: gnu Organization: University of Illinois, Urbana-Champaign Lines: 25 Recently, Matthew Self posted an inline math.h and math-68881.h. The function modf was defined in math.h as : extern double frexp (double x, int *exp), modf (double x, int *ip); and in math-68881.h as: __inline static double modf (double x, int *ip) according to man pages, these should really be: extern double frexp (double x, int *exp), modf (double x, double *ip); and __inline static double modf (double x, double *ip) Do others agree? This is needed to include math-68881.h in G++. -- Dirk Grunwald Univ. of Illinois grunwald@flute.cs.uiuc.edu