diff options
| author | Damien George | 2014-09-03 21:53:48 +0100 |
|---|---|---|
| committer | Damien George | 2014-09-03 21:53:48 +0100 |
| commit | fc54250d3158bcd897d43187b822765fb97f369f (patch) | |
| tree | 89f2595913c8f0d8ea7d36e07c889afd980a2287 | |
| parent | 27dd910c446e89fadb6aecac5175c8c2ccbac5ff (diff) | |
| parent | 8c56241c823cc650b95f60042721b70d43d9024e (diff) | |
Merge pull request #844 from chrisdearman/do_str
Declare do_str() function before the implementation
| -rw-r--r-- | qemu-arm/test_main.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/qemu-arm/test_main.c b/qemu-arm/test_main.c index 63f7e3f0c..818c558b3 100644 --- a/qemu-arm/test_main.c +++ b/qemu-arm/test_main.c @@ -18,6 +18,7 @@ #include "tinytest.h" #include "tinytest_macros.h" +void do_str(const char *src); inline void do_str(const char *src) { mp_lexer_t *lex = mp_lexer_new_from_str_len(MP_QSTR__lt_stdin_gt_, src, strlen(src), 0); if (lex == NULL) { |
