mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
os.flush_stdout()
This commit is contained in:
parent
58577f57c6
commit
2306901e6e
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
- @ for escaping keywords (e.g. `struct Foo { @type string }`).
|
- @ for escaping keywords (e.g. `struct Foo { @type string }`).
|
||||||
- Windows Unicode fixes (V can now work with non-ASCII paths etc on Windows).
|
- Windows Unicode fixes (V can now work with non-ASCII paths etc on Windows).
|
||||||
|
- Fix mutable args bugs + don't allow primitive arguments to be modified.
|
||||||
|
|
||||||
|
|
||||||
## V 0.1.16
|
## V 0.1.16
|
||||||
|
@ -833,6 +833,10 @@ pub fn file_last_mod_unix(path string) int {
|
|||||||
fn log(s string) {
|
fn log(s string) {
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub fn flush_stdout() {
|
||||||
|
C.fflush(stdout)
|
||||||
|
}
|
||||||
|
|
||||||
pub fn print_backtrace() {
|
pub fn print_backtrace() {
|
||||||
/*
|
/*
|
||||||
# void *buffer[100];
|
# void *buffer[100];
|
||||||
|
Loading…
Reference in New Issue
Block a user