2004-10-22 Chris Toshok <toshok@ximian.com>
[mono.git] / mono / os / unix / util.c
1 /*
2  * util.c: Simple runtime tools for the Unix platform
3  *
4  * Author:
5  *   Miguel de Icaza
6  *
7  * (C) 2002 Ximian, Inc. (http://www.ximian.com)
8  */
9 #include <config.h>
10 #include <mono/os/util.h>
11
12 /*
13  * mono_set_rootdir:
14  *
15  * Informs the runtime of the root directory for the Mono installation,
16  * the vm_file
17  */
18 void
19 mono_set_rootdir (void)
20 {
21         /* nothing on Unix */
22 }
23
24  
25