diff options
author | Marvin Borner | 2020-05-29 23:47:29 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-29 23:47:29 +0200 |
commit | 45a5ecc72d8e700614a0751f0e7ec68199885b77 (patch) | |
tree | 7da3053bd5a2b5ced5a4605e18ab4e921f65bc70 /src/kernel/lib/stdlib.h | |
parent | df7637951f705fb2e2192510ab276e2289fd6cec (diff) |
Added more printf features
Diffstat (limited to 'src/kernel/lib/stdlib.h')
-rw-r--r-- | src/kernel/lib/stdlib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/kernel/lib/stdlib.h b/src/kernel/lib/stdlib.h index 77254b6..cee453c 100644 --- a/src/kernel/lib/stdlib.h +++ b/src/kernel/lib/stdlib.h @@ -10,7 +10,7 @@ #endif char *itoa(int n); -char *itoa_base(int value, char *result, int base); +char *itoa_base(int value, char *result, int base, int is_signed); int atoi(char *str); |