mirror of
https://github.com/darlinghq/darling-dyld.git
synced 2024-11-23 12:29:44 +00:00
01ca8e46cb
dyld-733.6
16 lines
163 B
C++
16 lines
163 B
C++
|
|
#include <stdlib.h>
|
|
|
|
#include "foo.h"
|
|
|
|
test* maketestsub()
|
|
{
|
|
return new testsub();
|
|
}
|
|
|
|
bool istestsub(test* t)
|
|
{
|
|
return (dynamic_cast<testsub*>(t) != NULL);
|
|
}
|
|
|