diff options
Diffstat (limited to 'src/rt/rust_run_program.cpp')
| -rw-r--r-- | src/rt/rust_run_program.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/rt/rust_run_program.cpp b/src/rt/rust_run_program.cpp index 5919f68e..7b73586e 100644 --- a/src/rt/rust_run_program.cpp +++ b/src/rt/rust_run_program.cpp @@ -76,6 +76,12 @@ rust_run_program(rust_task* task, char* argv[], exit(1); } +extern "C" CDECL int +rust_process_wait(void* task, int proc) { + // FIXME: stub; exists to placate linker. + return 0; +} + #else #error "Platform not supported." #endif |