github.com/gop9/olt@v0.0.0-20200202132135-d956aad50b08/gio/app/internal/log/log_ios.m (about)

     1  // SPDX-License-Identifier: Unlicense OR MIT
     2  
     3  // +build darwin,ios
     4  
     5  @import Foundation;
     6  
     7  #include "log_ios.h"
     8  
     9  void nslog(char *str) {
    10  	NSLog(@"%@", @(str));
    11  }