mirror of
https://github.com/roc-lang/roc.git
synced 2024-11-10 10:02:38 +03:00
fix for ruby-interop example
This commit is contained in:
parent
ac95c9a71a
commit
64a614396a
@ -28,6 +28,10 @@ void* roc_memcpy(void* dest, const void* src, size_t n) {
|
||||
return memcpy(dest, src, n);
|
||||
}
|
||||
|
||||
void* roc_memmove(void* dest, const void* src, size_t n){
|
||||
return memmove(dest, src, n);
|
||||
}
|
||||
|
||||
void* roc_memset(void* str, int c, size_t n) { return memset(str, c, n); }
|
||||
|
||||
int roc_shm_open(char* name, int oflag, int mode) {
|
||||
|
Loading…
Reference in New Issue
Block a user