diff options
Diffstat (limited to 'cc3200/main.c')
-rw-r--r-- | cc3200/main.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/cc3200/main.c b/cc3200/main.c index 06b3604b67..7c6c4b545d 100644 --- a/cc3200/main.c +++ b/cc3200/main.c @@ -98,13 +98,6 @@ int main (void) { for ( ; ; ); } -void stoupper (char *str) { - while (str && *str != '\0') { - *str = (char)toupper((int)(*str)); - str++; - } -} - // We need this when configSUPPORT_STATIC_ALLOCATION is enabled void vApplicationGetIdleTaskMemory( StaticTask_t **ppxIdleTaskTCBBuffer, StackType_t **ppxIdleTaskStackBuffer, |