Completed port of k64f to stdio and system heap with optional local heap

This commit is contained in:
Philip Smart
2020-05-09 22:55:59 +01:00
parent baa5c7ea31
commit c6d2190dd4
227 changed files with 201515 additions and 171873 deletions

View File

@@ -33,6 +33,7 @@ _PROTOTYPE( char *strcpy, (char *_s1, const char *_s2) );
_PROTOTYPE( size_t strcspn, (const char *_s1, const char *_s2) );
_PROTOTYPE( char *strerror, (int _errnum) );
_PROTOTYPE( size_t strlen, (const char *_s) );
_PROTOTYPE( size_t strnlen, (const char *_s, size_t _n) );
_PROTOTYPE( char *strncat, (char *_s1, const char *_s2, size_t _n) );
_PROTOTYPE( char *strncpy, (char *_s1, const char *_s2, size_t _n) );
_PROTOTYPE( char *strpbrk, (const char *_s1, const char *_s2) );