fix some -Wmissing-prototypes warnings

This commit is contained in:
Meco Man
2023-12-30 21:52:52 +08:00
parent 92bd28f22b
commit 6cc63626d7
10 changed files with 21 additions and 14 deletions

View File

@@ -18,6 +18,8 @@ extern "C" {
#include <stdint.h>
#include <stdlib.h>
void __rt_libc_exit(int status);
char *itoa(int n, char *buffer, int radix);
char *lltoa(int64_t ll, char *buffer, int radix);
char *ltoa(long l, char *buffer, int radix);