Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of M2XStreamClient by
Diff: Utility.cpp
- Revision:
- 22:4d895e732765
- Parent:
- 21:6878944d2ce2
--- a/Utility.cpp Sat Jan 02 02:29:43 2016 +0000 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -#include "Utility.h" - -void delay(int ms) { - wait_ms(ms); -} - -char* strdup(const char* s) { - char* ret = (char*) malloc(strlen(s) + 1); - if (ret == NULL) { return ret;} - return strcpy(ret, s); -}