Skip to content
Snippets Groups Projects
Verified Commit 57f7de1e authored by Tom Almeida's avatar Tom Almeida
Browse files

Changed FILE to use a vector as a buffer instead of raw pointers. This allows...

Changed FILE to use a vector as a buffer instead of raw pointers. This allows us to remove the large majority of unsafe blocks from the code
parent 4c65f14f
No related branches found
No related tags found
1 merge request!136Fixing some things in stdio
//! stdio implementation for Redox, following http://pubs.opengroup.org/onlinepubs/7908799/xsh/stdio.h.html
#![no_std]
// For Vec
#![feature(alloc)]
#![feature(const_fn)]
......
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