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
[coop] Refactor/reuse mono_value_box_handle/mono_value_box_checked and reduce raw...
[mono-project.git]
/
mono
/
utils
/
mono-stdlib.h
blob
eb8531bc86a4386a922a27690a309b4265fa82e0
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