mirror of
https://git.sr.ht/~eliasnaur/gio
synced 2026-07-01 15:45:38 +00:00
0da1b1bdbc
Signed-off-by: Elias Naur <mail@eliasnaur.com>
12 lines
164 B
Objective-C
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));
|
|
}
|