Files
gio/app/internal/log/log_ios.m
T
2019-10-14 16:39:32 +02:00

12 lines
160 B
Objective-C

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