From 4a081b1001829f12d8b5f45cee3283e55efe1461 Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 6 Feb 2014 09:52:53 +0000 Subject: [PATCH] Add mp_import_stat to unix-cpy port. --- unix-cpy/main.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/unix-cpy/main.c b/unix-cpy/main.c index 4bd924954f..10003c9929 100644 --- a/unix-cpy/main.c +++ b/unix-cpy/main.c @@ -80,3 +80,7 @@ int main(int argc, char **argv) { machine_float_t machine_sqrt(machine_float_t x) { return sqrt(x); } + +mp_import_stat_t mp_import_stat(const char *path) { + return MP_IMPORT_STAT_NO_EXIST; +}