| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | #if defined(_MSC_VER)
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | #define FACTOR_STDCALL(return_type) return_type __stdcall
 | 
					
						
							|  |  |  | #define FACTOR_FASTCALL(return_type) return_type __fastcall
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | #elif defined(i386) || defined(__i386) || defined(__i386__)
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | #define FACTOR_STDCALL(return_type) __attribute__((stdcall)) return_type
 | 
					
						
							|  |  |  | #define FACTOR_FASTCALL(return_type) __attribute__((fastcall)) return_type
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:15:42 -05:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | #define FACTOR_STDCALL(return_type) return_type
 | 
					
						
							|  |  |  | #define FACTOR_FASTCALL(return_type) return_type
 | 
					
						
							| 
									
										
										
										
											2007-09-20 18:09:08 -04:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-04 10:44:26 -04:00
										 |  |  | #if defined(__APPLE__)
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | #define FACTOR_EXPORT __attribute__((visibility("default")))
 | 
					
						
							| 
									
										
										
										
											2009-05-04 10:44:26 -04:00
										 |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | #define FACTOR_EXPORT
 | 
					
						
							| 
									
										
										
										
											2009-05-04 10:44:26 -04:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT void ffi_test_0(void); | 
					
						
							|  |  |  | FACTOR_EXPORT int ffi_test_1(void); | 
					
						
							|  |  |  | FACTOR_EXPORT int ffi_test_2(int x, int y); | 
					
						
							|  |  |  | FACTOR_EXPORT int ffi_test_3(int x, int y, int z, int t); | 
					
						
							|  |  |  | FACTOR_EXPORT float ffi_test_4(void); | 
					
						
							|  |  |  | FACTOR_EXPORT double ffi_test_5(void); | 
					
						
							|  |  |  | FACTOR_EXPORT double ffi_test_6(float x, float y); | 
					
						
							|  |  |  | FACTOR_EXPORT double ffi_test_7(double x, double y); | 
					
						
							|  |  |  | FACTOR_EXPORT double ffi_test_8(double x, float y, double z, float t, int w); | 
					
						
							|  |  |  | FACTOR_EXPORT int ffi_test_9(int a, int b, int c, int d, int e, int f, int g); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | FACTOR_EXPORT int ffi_test_10(int a, int b, double c, int d, float e, int f, | 
					
						
							|  |  |  |                               int g, int h); | 
					
						
							|  |  |  | struct foo { | 
					
						
							|  |  |  |   int x, y; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT int ffi_test_11(int a, struct foo b, int c); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct rect { | 
					
						
							|  |  |  |   float x, y, w, h; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT int ffi_test_12(int a, int b, struct rect c, int d, int e, int f); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | FACTOR_EXPORT int ffi_test_13(int a, int b, int c, int d, int e, int f, int g, | 
					
						
							|  |  |  |                               int h, int i, int j, int k); | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct foo ffi_test_14(int x, int y); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | FACTOR_EXPORT char* ffi_test_15(char* x, char* y); | 
					
						
							|  |  |  | struct bar { | 
					
						
							|  |  |  |   long x, y, z; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct bar ffi_test_16(long x, long y, long z); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct tiny { | 
					
						
							|  |  |  |   int x; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct tiny ffi_test_17(int x); | 
					
						
							|  |  |  | FACTOR_EXPORT FACTOR_STDCALL(int) ffi_test_18(int x, int y, int z, int t); | 
					
						
							|  |  |  | FACTOR_EXPORT FACTOR_STDCALL(struct bar) ffi_test_19(long x, long y, long z); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | FACTOR_EXPORT void ffi_test_20(double x1, double x2, double x3, double y1, | 
					
						
							|  |  |  |                                double y2, double y3, double z1, double z2, | 
					
						
							|  |  |  |                                double z3); | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT long long ffi_test_21(long x, long y); | 
					
						
							|  |  |  | FACTOR_EXPORT long ffi_test_22(long x, long long y, long long z); | 
					
						
							|  |  |  | FACTOR_EXPORT float ffi_test_23(float x[3], float y[3]); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_1 { | 
					
						
							|  |  |  |   char x; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_1 ffi_test_24(void); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_2 { | 
					
						
							|  |  |  |   char x, y; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_2 ffi_test_25(void); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_3 { | 
					
						
							|  |  |  |   char x, y, z; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_3 ffi_test_26(void); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_4 { | 
					
						
							|  |  |  |   char x, y, z, a; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_4 ffi_test_27(void); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_5 { | 
					
						
							|  |  |  |   char x, y, z, a, b; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_5 ffi_test_28(void); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_6 { | 
					
						
							|  |  |  |   char x, y, z, a, b, c; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_6 ffi_test_29(void); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_7 { | 
					
						
							|  |  |  |   char x, y, z, a, b, c, d; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_7 ffi_test_30(void); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | FACTOR_EXPORT int ffi_test_31(int x0, int x1, int x2, int x3, int x4, int x5, | 
					
						
							|  |  |  |                               int x6, int x7, int x8, int x9, int x10, int x11, | 
					
						
							|  |  |  |                               int x12, int x13, int x14, int x15, int x16, | 
					
						
							|  |  |  |                               int x17, int x18, int x19, int x20, int x21, | 
					
						
							|  |  |  |                               int x22, int x23, int x24, int x25, int x26, | 
					
						
							|  |  |  |                               int x27, int x28, int x29, int x30, int x31, | 
					
						
							|  |  |  |                               int x32, int x33, int x34, int x35, int x36, | 
					
						
							|  |  |  |                               int x37, int x38, int x39, int x40, int x41); | 
					
						
							|  |  |  | FACTOR_EXPORT float ffi_test_31_point_5( | 
					
						
							|  |  |  |     float x0, float x1, float x2, float x3, float x4, float x5, float x6, | 
					
						
							|  |  |  |     float x7, float x8, float x9, float x10, float x11, float x12, float x13, | 
					
						
							|  |  |  |     float x14, float x15, float x16, float x17, float x18, float x19, float x20, | 
					
						
							|  |  |  |     float x21, float x22, float x23, float x24, float x25, float x26, float x27, | 
					
						
							|  |  |  |     float x28, float x29, float x30, float x31, float x32, float x33, float x34, | 
					
						
							|  |  |  |     float x35, float x36, float x37, float x38, float x39, float x40, | 
					
						
							|  |  |  |     float x41); | 
					
						
							|  |  |  | struct test_struct_8 { | 
					
						
							|  |  |  |   double x; | 
					
						
							|  |  |  |   double y; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT double ffi_test_32(struct test_struct_8 x, int y); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_9 { | 
					
						
							|  |  |  |   float x; | 
					
						
							|  |  |  |   float y; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT double ffi_test_33(struct test_struct_9 x, int y); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_10 { | 
					
						
							|  |  |  |   float x; | 
					
						
							|  |  |  |   int y; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT double ffi_test_34(struct test_struct_10 x, int y); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_11 { | 
					
						
							|  |  |  |   int x; | 
					
						
							|  |  |  |   int y; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT double ffi_test_35(struct test_struct_11 x, int y); | 
					
						
							| 
									
										
										
										
											2008-02-03 18:28:57 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_12 { | 
					
						
							|  |  |  |   int a; | 
					
						
							|  |  |  |   double x; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-02-03 18:28:57 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT double ffi_test_36(struct test_struct_12 x); | 
					
						
							| 
									
										
										
										
											2008-04-17 22:26:37 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT void ffi_test_36_point_5(void); | 
					
						
							| 
									
										
										
										
											2008-04-20 07:15:14 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT int ffi_test_37(int (*f)(int, int, int)); | 
					
						
							| 
									
										
										
										
											2008-04-19 03:11:30 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | FACTOR_EXPORT unsigned long long ffi_test_38(unsigned long long x, | 
					
						
							|  |  |  |                                              unsigned long long y); | 
					
						
							| 
									
										
										
										
											2008-09-09 04:10:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_13 { | 
					
						
							|  |  |  |   float x1, x2, x3, x4, x5, x6; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-09-09 04:10:43 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT int ffi_test_39(long a, long b, struct test_struct_13 s); | 
					
						
							| 
									
										
										
										
											2008-09-13 21:28:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_14 { | 
					
						
							|  |  |  |   double x1, x2; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-09-13 21:28:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_14 ffi_test_40(double x1, double x2); | 
					
						
							| 
									
										
										
										
											2008-09-13 21:28:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_12 ffi_test_41(int a, double x); | 
					
						
							| 
									
										
										
										
											2008-09-13 21:28:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_15 { | 
					
						
							|  |  |  |   float x, y; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-09-13 21:28:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_15 ffi_test_42(float x, float y); | 
					
						
							| 
									
										
										
										
											2008-09-13 21:28:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | struct test_struct_16 { | 
					
						
							|  |  |  |   float x; | 
					
						
							|  |  |  |   int a; | 
					
						
							|  |  |  | }; | 
					
						
							| 
									
										
										
										
											2008-09-13 21:28:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_16 ffi_test_43(float x, int a); | 
					
						
							| 
									
										
										
										
											2008-09-13 21:28:13 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT struct test_struct_14 ffi_test_44(); | 
					
						
							| 
									
										
										
										
											2009-02-06 05:02:00 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | /* C99 features */ | 
					
						
							|  |  |  | #ifndef _MSC_VER
 | 
					
						
							| 
									
										
										
										
											2009-02-06 13:21:53 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | #include <stdbool.h>
 | 
					
						
							| 
									
										
										
										
											2009-02-06 13:21:53 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT _Complex float ffi_test_45(int x); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FACTOR_EXPORT _Complex double ffi_test_46(int x); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FACTOR_EXPORT _Complex float ffi_test_47(_Complex float x, _Complex double y); | 
					
						
							| 
									
										
										
										
											2009-05-05 19:37:40 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | struct bool_field_test { | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  |   char* name; | 
					
						
							|  |  |  |   bool on; | 
					
						
							|  |  |  |   short parents; | 
					
						
							| 
									
										
										
										
											2009-05-05 19:37:40 -04:00
										 |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2010-02-02 05:01:12 -05:00
										 |  |  | FACTOR_EXPORT short ffi_test_48(struct bool_field_test x); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2010-04-01 05:22:42 -04:00
										 |  |  | 
 | 
					
						
							|  |  |  | FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_49(int x); | 
					
						
							|  |  |  | FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_50(int x, int y); | 
					
						
							|  |  |  | FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_51(int x, int y, int z); | 
					
						
							|  |  |  | FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_52(int x, float y, int z); | 
					
						
							|  |  |  | FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_53(int x, float y, int z, int w); | 
					
						
							| 
									
										
										
										
											2010-04-01 06:02:36 -04:00
										 |  |  | FACTOR_EXPORT FACTOR_FASTCALL(int) ffi_test_54(struct test_struct_11 x, int y); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | FACTOR_EXPORT FACTOR_FASTCALL(int) | 
					
						
							|  |  |  |     ffi_test_55(struct test_struct_11 x, int y, int z); | 
					
						
							|  |  |  | FACTOR_EXPORT FACTOR_FASTCALL(int) | 
					
						
							|  |  |  |     ffi_test_56(struct test_struct_11 x, int y, int z, int w); | 
					
						
							| 
									
										
										
										
											2010-04-02 02:52:56 -04:00
										 |  |  | FACTOR_EXPORT FACTOR_FASTCALL(struct test_struct_11) ffi_test_57(int x, int y); | 
					
						
							| 
									
										
										
										
											2013-05-11 22:00:36 -04:00
										 |  |  | FACTOR_EXPORT FACTOR_FASTCALL(struct test_struct_11) | 
					
						
							|  |  |  |     ffi_test_58(int x, int y, int z); | 
					
						
							| 
									
										
										
										
											2014-07-07 20:02:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-07-07 23:53:33 -04:00
										 |  |  | FACTOR_EXPORT signed long long ffi_test_59(signed long long x); | 
					
						
							|  |  |  | FACTOR_EXPORT unsigned long long ffi_test_60(unsigned long long x); | 
					
						
							| 
									
										
										
										
											2014-07-07 20:02:36 -04:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-09 13:39:50 -05:00
										 |  |  | /* C99 features */ | 
					
						
							|  |  |  | #ifndef _MSC_VER
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #include <stdbool.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-07 18:34:10 -05:00
										 |  |  | struct bool_and_ptr { | 
					
						
							|  |  |  |     bool b; | 
					
						
							|  |  |  |     void* ptr; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-07 18:42:25 -05:00
										 |  |  | FACTOR_EXPORT struct bool_and_ptr ffi_test_61(); | 
					
						
							| 
									
										
										
										
											2014-11-08 16:39:47 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-10 13:30:35 -05:00
										 |  |  | #endif
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-11-08 16:39:47 -05:00
										 |  |  | struct uint_pair { | 
					
						
							|  |  |  | 	unsigned int a; | 
					
						
							|  |  |  | 	unsigned int b; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FACTOR_EXPORT struct uint_pair ffi_test_62(); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct ulonglong_pair { | 
					
						
							|  |  |  | 	unsigned long long a; | 
					
						
							|  |  |  | 	unsigned long long b; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | FACTOR_EXPORT struct ulonglong_pair ffi_test_63(); | 
					
						
							| 
									
										
										
										
											2014-11-09 13:39:50 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-08-02 17:36:02 -04:00
										 |  |  | FACTOR_EXPORT int ffi_test_64(int n, ...); | 
					
						
							|  |  |  | FACTOR_EXPORT double ffi_test_65(int n, ...); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2014-08-06 18:27:25 -04:00
										 |  |  | FACTOR_EXPORT void* bug1021_test_1(void* x, int y); | 
					
						
							|  |  |  | FACTOR_EXPORT int bug1021_test_2(int x, char* y, void *z); | 
					
						
							|  |  |  | FACTOR_EXPORT void* bug1021_test_3(int x); |