OLD | NEW |
---|---|
1 #ifdef _MSC_VER | 1 #ifdef _MSC_VER |
2 __declspec(dllexport) | 2 __declspec(dllexport) |
3 #else | 3 #else |
4 __attribute__((visibility("default"))) | 4 __attribute__((visibility("default"))) |
5 #endif | 5 #endif |
6 int foo() { | 6 int foo() { |
7 return 42; | 7 return 42; |
8 } | 8 } |
OLD | NEW |