lexerfrozen.c 276 B

12345678910111213
  1. #include <stdio.h>
  2. #include "py/lexer.h"
  3. #include "py/runtime.h"
  4. #include "py/mperrno.h"
  5. mp_import_stat_t mp_import_stat(const char *path) {
  6. return MP_IMPORT_STAT_NO_EXIST;
  7. }
  8. mp_lexer_t *mp_lexer_new_from_file(const char *filename) {
  9. mp_raise_OSError(MP_ENOENT);
  10. }