Rename the majority of remaining C files in the RTS to C++
[charm.git] / src / conv-core / conv-static.c
blobafec82c4ccf3c7c66dd8c53ad3757549a2374153
1 /* Things that must be statically linked to the binary, even in shared mode. */
3 #include "conv-config.h"
4 #include <stddef.h>
6 /* __executable_start has symbol visibility type STV_HIDDEN */
7 /* https://github.com/UIUC-PPL/charm/issues/1893 */
8 extern void* CmiExecutableStart;
9 #if CMK_HAS_EXECUTABLE_START
10 extern char __executable_start;
11 void* CmiExecutableStart = (void*)&__executable_start;
12 #else
13 void* CmiExecutableStart = NULL;
14 #endif