Files
gio/app/internal/log/log_ios.m
T
2020-05-17 15:43:12 +02:00

12 lines
164 B
Objective-C

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