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