On 9/19/2011 1:55 AM, Ellery Newcomer wrote: > Just came across some old D code that does this: > > version(linux){ > extern(C): > } > > <Hundreds of OpenGL decls> > > > > in dmd 2.055, the extern(C) is not being applied to the OpenGL decls. > should it? Change it to the following, and you're golden. extern(System): <Hundreds of OpenGL decls>