summaryrefslogtreecommitdiffstatshomepage
path: root/teensy/std.h
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-02-10 22:55:15 +0000
committerDamien George <damien.p.george@gmail.com>2014-02-10 22:55:15 +0000
commit181d190643549c6a7d731deeef3d6aeded769956 (patch)
treec96776e0e9bc111f5629915585aae2dff927c972 /teensy/std.h
parentf1081f400b3dd072fd46704d93557bd40ae617e5 (diff)
downloadmicropython-181d190643549c6a7d731deeef3d6aeded769956.tar.gz
micropython-181d190643549c6a7d731deeef3d6aeded769956.zip
stm: Remove unused, useless and not-to-be-used strndup.
Addresses issue #275.
Diffstat (limited to 'teensy/std.h')
-rw-r--r--teensy/std.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/teensy/std.h b/teensy/std.h
index 6b768e7c8d..7003e7be0b 100644
--- a/teensy/std.h
+++ b/teensy/std.h
@@ -13,7 +13,6 @@ void *memset(void *s, int c, size_t n);
int strlen(const char *str);
int strcmp(const char *s1, const char *s2);
int strncmp(const char *s1, const char *s2, size_t n);
-char *strndup(const char *s, size_t n);
char *strcpy(char *dest, const char *src);
char *strcat(char *dest, const char *src);