forked from joejulian/gio
22cd88df9f
The "ui" is redundant and stutters. 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));
|
|
}
|