We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1775dd1 commit 3780b5cCopy full SHA for 3780b5c
cores/esp32/stdlib_noniso.c
@@ -30,8 +30,7 @@
30
#include "stdlib_noniso.h"
31
#include "esp_system.h"
32
33
-#if !CONFIG_DSP_ANSI && !CONFIG_DSP_OPTIMIZED
34
-void reverse(char* begin, char* end) {
+static void reverse(char* begin, char* end) {
35
char *is = begin;
36
char *ie = end - 1;
37
while(is < ie) {
@@ -42,9 +41,6 @@ void reverse(char* begin, char* end) {
42
41
--ie;
43
}
44
45
-#else
46
-void reverse(char* begin, char* end);
47
-#endif
48
49
char* ltoa(long value, char* result, int base) {
50
if(base < 2 || base > 16) {
0 commit comments