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