app/internal/log: extract log setup to separate package

Signed-off-by: Elias Naur <mail@eliasnaur.com>
This commit is contained in:
Elias Naur
2019-10-14 16:37:13 +02:00
parent 10c1b2cb8d
commit b30bf3cef8
6 changed files with 9 additions and 2 deletions
+11
View File
@@ -0,0 +1,11 @@
// SPDX-License-Identifier: Unlicense OR MIT
// +build darwin,ios
@import Foundation;
#include "log_ios.h"
void nslog(char *str) {
NSLog(@"%@", @(str));
}