diff options
author | Damien George <damien.p.george@gmail.com> | 2014-02-06 09:52:53 +0000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-02-06 09:52:53 +0000 |
commit | 4a081b1001829f12d8b5f45cee3283e55efe1461 (patch) | |
tree | 1359ab386c9473d9ac1ce1fe3cd171f540b5128b /unix-cpy | |
parent | 9fce77c993fce3690f6f6ce6a5c1097e6c74f448 (diff) | |
download | micropython-4a081b1001829f12d8b5f45cee3283e55efe1461.tar.gz micropython-4a081b1001829f12d8b5f45cee3283e55efe1461.zip |
Add mp_import_stat to unix-cpy port.
Diffstat (limited to 'unix-cpy')
-rw-r--r-- | unix-cpy/main.c | 4 |
1 files changed, 4 insertions, 0 deletions
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; +} |