Welcome to mirror list, hosted at ThFree Co, Russian Federation.

util.c « unix « os « mono - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 442570c41d169da0cc664d8be978e0c0b95d6136 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
 * util.c: Simple runtime tools for the Unix platform
 *
 * Author:
 *   Miguel de Icaza
 *
 * (C) 2002 Ximian, Inc. (http://www.ximian.com)
 */
#include <config.h>
#include <mono/os/util.h>

/*
 * mono_set_rootdir:
 * @vm_filename: The pathname of the code invoking us (argv [0])
 *
 * Informs the runtime of the root directory for the Mono installation,
 * the vm_file
 */
void
mono_set_rootdir (const char *vm_filename)
{
	/* nothing on Unix */
}