diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-07 22:44:19 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-05-07 22:44:19 +0300 |
commit | be6aa53cdb18359e5c7e51caac2ca0ea7160962d (patch) | |
tree | 2f5be2a3ccecaa76c4577640e72adeeca4601b33 | |
parent | 69cbec4afb3ac191334f0cfc5bfa14b2cdefea4c (diff) | |
parent | 951335e102dcc0fead3046741ab161bd010fd0d0 (diff) | |
download | micropython-be6aa53cdb18359e5c7e51caac2ca0ea7160962d.tar.gz micropython-be6aa53cdb18359e5c7e51caac2ca0ea7160962d.zip |
Merge pull request #584 from stinos/windows-input
windows: Fix input.c missing in Makefile after changes for #582
-rw-r--r-- | windows/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/windows/Makefile b/windows/Makefile index ce75a60985..aeb105634d 100644 --- a/windows/Makefile +++ b/windows/Makefile @@ -30,6 +30,7 @@ endif SRC_C = \ unix/main.c \ unix/file.c \ + unix/input.c \ realpath.c \ init.c \ |