mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-27 13:59:08 +00:00
12 lines
No EOL
267 B
C
12 lines
No EOL
267 B
C
#include <stdio.h>
|
|
#include <string.h>
|
|
|
|
extern int rust_main();
|
|
|
|
int main() { return rust_main(); }
|
|
|
|
void *roc_memcpy(void *dest, const void *src, size_t n) {
|
|
return memcpy(dest, src, n);
|
|
}
|
|
|
|
void *roc_memset(void *str, int c, size_t n) { return memset(str, c, n); } |