You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
269 B
17 lines
269 B
13 years ago
|
#if defined(_WIN32) && defined(SHARED_C)
|
||
|
# define IMPORT_C __declspec(dllimport)
|
||
|
#else
|
||
|
# define IMPORT_C
|
||
|
#endif
|
||
|
extern IMPORT_C int b1(void);
|
||
|
extern IMPORT_C int b2(void);
|
||
|
extern IMPORT_C int c(void);
|
||
|
int main(void)
|
||
|
{
|
||
|
return 0
|
||
|
+ c()
|
||
|
+ b1()
|
||
|
+ b2()
|
||
|
;
|
||
|
}
|