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