aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib/lib.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/lib/lib.h')
-rw-r--r--src/kernel/lib/lib.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h
index d6cc09e..0292cc3 100644
--- a/src/kernel/lib/lib.h
+++ b/src/kernel/lib/lib.h
@@ -65,8 +65,8 @@ int memory_compare(const void *a_ptr, const void *b_ptr, size_t size);
* Convert an int into a string
* @param i The integer which should be converted
* @param b The converted int as string
- * @return The converted string (b)
+ * @param base The desired base
*/
-char *itoa(int i, char b[]);
+void *itoa(int i, char *b, int base);
#endif