aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authormwturvey <michael.w.turvey@intel.com>2017-03-15 15:31:17 -0700
committermwturvey <michael.w.turvey@intel.com>2017-03-15 15:31:17 -0700
commita409645cd3e2b8f0cc67541a9e4c88bf2cd96a79 (patch)
tree9e517b6b2b77e10bbaf589be9759dab27004c831 /src
parent1caa844dad647b03cf3c1d11bf211e9fcde4b7f1 (diff)
downloadlibsurvive-a409645cd3e2b8f0cc67541a9e4c88bf2cd96a79.tar.gz
libsurvive-a409645cd3e2b8f0cc67541a9e4c88bf2cd96a79.tar.bz2
Building & basic running
Diffstat (limited to 'src')
-rwxr-xr-xsrc/survive.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/survive.c b/src/survive.c
index 1b5bed1..2982a4f 100755
--- a/src/survive.c
+++ b/src/survive.c
@@ -14,7 +14,8 @@
static int did_runtime_symnum;
int SymnumCheck( const char * path, const char * name, void * location, long size )
{
- if( strncmp( name, "REGISTER", 8 ) == 0 )
+ printf("%s\n", name);
+ if( strncmp( name, "LTRegister", 8 ) == 0 )
{
typedef void (*sf)();
sf fn = (sf)location;