diff options
| author | Damien George <damien.p.george@gmail.com> | 2014-01-21 23:28:03 +0000 |
|---|---|---|
| committer | Damien George <damien.p.george@gmail.com> | 2014-01-21 23:28:03 +0000 |
| commit | 2c302563820d18be5fcfed406582ea5edaa6b39f (patch) | |
| tree | a5449557639fb7d5cf462ec28bcddf4037e4cc46 /stm/std.h | |
| parent | d51cfd155c09771a6abb4e7a058522f4677fc7cb (diff) | |
stm: Clean up main.c; disable libgcc by default.
f2d and d2f functions from libgcc does not work correctly, most likely
due to the ABI being incorrect. libgcc disabled for now.
Diffstat (limited to 'stm/std.h')
| -rw-r--r-- | stm/std.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -11,7 +11,7 @@ void *memcpy(void *dest, const void *src, size_t n); void *memmove(void *dest, const void *src, size_t n); void *memset(void *s, int c, size_t n); -//int strlen(const char *str); +size_t 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); |
