repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Do not include prototypes if sys/select.h is not available
[mono-project.git]
/
mono
/
arch
/
unknown.c
blob
d865299001c200e5e0cafa5a0b040e5d01df7393
1
#include
"mono/interpreter/interp.h"
2
#ifdef NO_PORT
3
MonoPIFunc
4
mono_create_trampoline
(
MonoMethodSignature
*
sig
,
gboolean string_ctor
)
5
{
6
g_error
(
"Unsupported arch"
);
7
return
NULL
;
8
}
9
10
void
*
11
mono_create_method_pointer
(
MonoMethod
*
method
)
12
{
13
g_error
(
"Unsupported arch"
);
14
return
NULL
;
15
}
16
17
#endif
18