summaryrefslogtreecommitdiff
path: root/test1.c
diff options
context:
space:
mode:
authoreroen2015-07-10 22:59:24 +0200
committereroen2015-07-10 22:59:24 +0200
commit1ff4e0626696cce79347cea1f8af03ff0df5c3fd (patch)
tree434448c9801009a8365e67a3130571042468c3f2 /test1.c
downloaddynsymlink-1ff4e0626696cce79347cea1f8af03ff0df5c3fd.tar.gz
dynsymlink-1ff4e0626696cce79347cea1f8af03ff0df5c3fd.tar.bz2
dynsymlink-1ff4e0626696cce79347cea1f8af03ff0df5c3fd.tar.xz
Simple LD_PRELOAD demo
Diffstat (limited to 'test1.c')
-rw-r--r--test1.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/test1.c b/test1.c
new file mode 100644
index 0000000..0feef57
--- /dev/null
+++ b/test1.c
@@ -0,0 +1,13 @@
+/*
+ * test1
+ *
+ * Linked against libdynsymlink
+ */
+
+#include <stdio.h>
+
+int main()
+{
+ printf("This is test1\n");
+ return 0;
+}