rust/tests/ui/rfcs/rfc-1014.rs
2023-01-11 09:32:08 +00:00

35 lines
610 B
Rust

// run-pass
#![allow(dead_code)]
// ignore-wasm32-bare no libc
// ignore-sgx no libc
#![feature(rustc_private)]
extern crate libc;
type DWORD = u32;
type HANDLE = *mut u8;
#[cfg(windows)]
extern "system" {
fn GetStdHandle(which: DWORD) -> HANDLE;
fn CloseHandle(handle: HANDLE) -> i32;
}
#[cfg(windows)]
fn close_stdout() {
const STD_OUTPUT_HANDLE: DWORD = -11i32 as DWORD;
unsafe { CloseHandle(GetStdHandle(STD_OUTPUT_HANDLE)); }
}
#[cfg(not(windows))]
fn close_stdout() {
unsafe { libc::close(1); }
}
fn main() {
close_stdout();
println!("hello");
println!("world");
}