diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-04-05 21:44:20 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2015-04-05 21:57:55 +0300 |
commit | 3a84c8b58d7c87785bf1ae48eb41c91ecde9fc1c (patch) | |
tree | 62129d5f488f0680cb6a165a4006c391da18195e /teensy | |
parent | e5c4362a98cf31d909476d9f06825228f05a2c82 (diff) | |
download | micropython-3a84c8b58d7c87785bf1ae48eb41c91ecde9fc1c.tar.gz micropython-3a84c8b58d7c87785bf1ae48eb41c91ecde9fc1c.zip |
string0.c: Move from stmhal/ to lib/.
Diffstat (limited to 'teensy')
-rw-r--r-- | teensy/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/teensy/Makefile b/teensy/Makefile index 1c896c390f..4e97cbc6a9 100644 --- a/teensy/Makefile +++ b/teensy/Makefile @@ -101,7 +101,6 @@ STM_SRC_C = $(addprefix stmhal/,\ printf.c \ pyexec.c \ pybstdio.c \ - string0.c \ ) STM_SRC_S = $(addprefix stmhal/,\ @@ -109,6 +108,7 @@ STM_SRC_S = $(addprefix stmhal/,\ ) LIB_SRC_C = $(addprefix lib/,\ + libc/string0.c \ mp-readline/readline.c \ ) |