aboutsummaryrefslogtreecommitdiff
path: root/vendor/gioui.org/app/internal/log/log_ios.m
blob: 201bc36b29d91ae62c195d26f8e5610adc989e86 (plain)
1
2
3
4
5
6
7
8
9
10
11
// SPDX-License-Identifier: Unlicense OR MIT

// +build darwin,ios

@import Foundation;

#include "_cgo_export.h"

void nslog(char *str) {
	NSLog(@"%@", @(str));
}