• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 #ifndef _WIN32
2 
3 const char* dlopen_pong(void);
4 
5 __attribute__((visibility("default")))
dlopen_ping(void)6 const char* dlopen_ping(void) {
7   return dlopen_pong();
8 }
9 
10 #endif  // _WIN32
11