Use roc__ prefix for exposed app functions

This commit is contained in:
Richard Feldman 2020-11-23 00:00:13 -05:00
parent 759c047b4c
commit 88d2ad1ffc
17 changed files with 50 additions and 30 deletions

View file

@ -3,7 +3,7 @@ use roc_std::RocList;
use std::time::SystemTime;
extern "C" {
#[link_name = "Main_quicksort_1_exposed"]
#[link_name = "_quicksort_1_exposed"]
fn quicksort(list: RocList<i64>, output: &mut RocCallResult<RocList<i64>>) -> ();
}