diff options
Diffstat (limited to 'ios-bootstrap/bundle-loader.m')
-rw-r--r-- | ios-bootstrap/bundle-loader.m | 5 |
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!"); +} |