remove const

This commit is contained in:
Yaossg 2024-12-07 12:24:00 +08:00
parent 2d7c2371e4
commit 98d5a1a3bc
8 changed files with 53 additions and 116 deletions

View file

@ -1,4 +1,4 @@
int printf(const char* format, ...);
int printf(char* format, ...);
int main() {
printf("hello world %d\n", 42);