diff options
author | narimiran <narimiran@disroot.org> | 2020-01-10 08:53:44 +0100 |
---|---|---|
committer | narimiran <narimiran@disroot.org> | 2020-01-10 08:53:44 +0100 |
commit | e9e114058c1c8e65f0b70f7af17ff37586b56908 (patch) | |
tree | e63bdb62c03bfa90371bc4813d575ce17e00d8a8 /lib/system | |
parent | 4cd86c08427205d2e26510a07a3c6980c14e1608 (diff) | |
download | Nim-e9e114058c1c8e65f0b70f7af17ff37586b56908.tar.gz |
[backport] system/io.nim fix wrong documentation comment [ci skip]
Diffstat (limited to 'lib/system')
-rw-r--r-- | lib/system/io.nim | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/system/io.nim b/lib/system/io.nim index 4a1f9b84a..62722140f 100644 --- a/lib/system/io.nim +++ b/lib/system/io.nim @@ -115,8 +115,8 @@ proc c_fprintf(f: File, frmt: cstring): cint {. proc c_fputc(c: char, f: File): cint {. importc: "fputc", header: "<stdio.h>".} -## When running nim in android app, stdout goes nowhere, so echo gets ignored -## To redirect echo to the android logcat, use -d:androidNDK +# When running nim in android app, stdout goes nowhere, so echo gets ignored +# To redirect echo to the android logcat, use -d:androidNDK when defined(androidNDK): const ANDROID_LOG_VERBOSE = 2.cint proc android_log_print(prio: cint, tag: cstring, fmt: cstring): cint |