Skip to content
Snippets Groups Projects
Commit 93ddcca2 authored by Paul Sajna's avatar Paul Sajna
Browse files

add test for errno

parent 89a9e016
No related branches found
No related tags found
1 merge request!27add test for errno
extern int errno;
......@@ -29,6 +29,7 @@ use core::fmt;
use types::*;
#[thread_local]
#[no_mangle]
pub static mut errno: c_int = 0;
pub unsafe fn c_str(s: *const c_char) -> &'static [u8] {
......
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
int main(int argc, char** argv) {
chdir("nonexistent");
printf("errno: %d\n", errno);
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment