Files
gio/ui/app/log_ios.m
T
2019-07-07 17:43:40 +02:00

12 lines
153 B
Objective-C

// SPDX-License-Identifier: Unlicense OR MIT
// +build ios
@import Foundation;
#include "log_ios.h"
void nslog(char *str) {
NSLog(@"%@", @(str));
}