fix for ruby-interop example

This commit is contained in:
Luke Boswell 2023-03-06 17:37:12 +11:00
parent ac95c9a71a
commit 64a614396a
No known key found for this signature in database
GPG Key ID: F6DB3C9DB47377B0

View File

@ -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) {