RE: cvs commit: fptools/hslibs/win32 Makefile.ghc finalizers.h mkGCDep fptools/hslibs/win32/gc-src StdDIS.gc

"Simon Marlow" <[email protected]> Mon, 26 Aug 2002 10:50:19 +0100
Newsgroups gmane.comp.lang.haskell.cvs.hslibs
Message-ID <9584A4A864BD8548932F2F88EB30D1C60909F8B6@TVP-MSG-01.europe.corp.microsoft.com>
> Oh, do you use 'static inline' by any chance?

Having just checked the gcc docs, I think I really mean "inline without
static or extern".  There seem to be three distinct cases:  inline,
static inline, and extern inline.  We do what the gcc docs suggest, and
use 'extern inline' in the header file together with a copy of the
function in a library.

Cheers,
	Simon