[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mono / utils / mono-stdlib.h
1 /**
2  * \file
3  */
4
5 #ifndef __MONO_FILE_H
6 #define __MONO_FILE_H
7
8 #ifdef HAVE_MKSTEMP
9 #include <stdlib.h>
10 #define mono_mkstemp(a) mkstemp(a)
11 #else
12 int mono_mkstemp (char *templ);
13 #endif
14
15 #endif /* __MONO_FILE_H */
16