2002-01-23 Miguel de Icaza <miguel@ximian.com>
[mono.git] / mono / arch / unknown.c
1 #ifdef NO_PORT
2 #include "mono/interpreter/interp.h"
3
4 MonoPIFunc
5 mono_create_trampoline (MonoMethod *method)
6 {
7         g_error ("Unsupported arch");
8         return NULL;
9 }
10
11 void *
12 mono_create_method_pointer (MonoMethod *method)
13 {
14         g_error ("Unsupported arch");
15         return NULL;
16 }
17
18 #endif
19