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