Add alloca helper to roc_std

This commit is contained in:
Richard Feldman 2020-11-01 22:48:47 -05:00
parent 729607e3fd
commit 251e379271
5 changed files with 165 additions and 0 deletions

View file

@ -2,6 +2,8 @@
#![no_std]
use core::fmt;
pub mod alloca;
// A list of C functions that are being imported
extern "C" {
pub fn printf(format: *const u8, ...) -> i32;