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