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

test-pinvoke.c « tests « ilasm « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0436ac56caba668d67421b44b2aaaf17d80a7357 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** 
 * test-pinvoke.c: native functions for testing ilasm pinvoke
 *
 * Author(s):
 *  Jackson Harper (jackson@ximian.com)
 *
 * (C) 2003 Ximian, Inc (http://www.ximian.com)
 *
 */


#include <stdio.h>
#include <stdlib.h>

int
ret_one ()
{
        return 1;
}