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