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