aboutsummaryrefslogtreecommitdiff
path: root/ios-bootstrap/bundle-loader.m
diff options
context:
space:
mode:
authorcomex2015-01-29 18:11:44 -0500
committercomex2015-01-29 18:11:44 -0500
commitca313c27fc9798e4e297aae4a93a1b8675d5794a (patch)
tree7a42f45594fb3c67d86a307e50fd1cbf8a7a6bff /ios-bootstrap/bundle-loader.m
parentadd SUBSTITUTE_DONT_STOP_THREADS for substrate compat - substrate doesn't do ... (diff)
downloadsubstitute-ca313c27fc9798e4e297aae4a93a1b8675d5794a.tar.gz
"Fix" broken launchd injection stuff.
Diffstat (limited to 'ios-bootstrap/bundle-loader.m')
-rw-r--r--ios-bootstrap/bundle-loader.m5
1 files changed, 5 insertions, 0 deletions
diff --git a/ios-bootstrap/bundle-loader.m b/ios-bootstrap/bundle-loader.m
new file mode 100644
index 0000000..532b844
--- /dev/null
+++ b/ios-bootstrap/bundle-loader.m
@@ -0,0 +1,5 @@
+#include <syslog.h>
+__attribute__((constructor))
+static void init() {
+ syslog(LOG_WARNING, "Hi!");
+}