1*c54f35caSApple OSS Distributions // These functions have been moved inline but we need to continue 2*c54f35caSApple OSS Distributions // exporting the mangled functions for loadable drivers compiled on older 3*c54f35caSApple OSS Distributions // systems. 4*c54f35caSApple OSS Distributions // Note that I have had to manually mangle the symbols names. 5*c54f35caSApple OSS Distributions void _ZN11OSMetaClassdlEPvm(void *mem, unsigned long size); 6*c54f35caSApple OSS Distributions void *_ZN11OSMetaClassnwEm(unsigned long size); 7*c54f35caSApple OSS Distributions 8*c54f35caSApple OSS Distributions void _ZN11OSMetaClassdlEPvm(void * mem,unsigned long size)9*c54f35caSApple OSS Distributions_ZN11OSMetaClassdlEPvm(__attribute__((unused)) void *mem, __attribute__((__unused__)) unsigned long size) 10*c54f35caSApple OSS Distributions { 11*c54f35caSApple OSS Distributions } 12*c54f35caSApple OSS Distributions void * _ZN11OSMetaClassnwEm(unsigned long size)13*c54f35caSApple OSS Distributions_ZN11OSMetaClassnwEm(__attribute__((unused)) unsigned long size) 14*c54f35caSApple OSS Distributions { 15*c54f35caSApple OSS Distributions return (void *)0ULL; 16*c54f35caSApple OSS Distributions } 17