From 102ad64330885bd5049dca21638c5e056bd0b9c9 Mon Sep 17 00:00:00 2001 From: Ian Piumarta Date: Sat, 25 Jan 2025 08:57:38 +0900 Subject: [PATCH] move system include files to subdir --- assert.h | 0 include/assert.h | 1 + include/stdio.h | 2 +- stdio.h | 1 - stdlib.h | 0 string.h | 0 6 files changed, 2 insertions(+), 2 deletions(-) delete mode 100644 assert.h delete mode 100644 stdio.h delete mode 100644 stdlib.h delete mode 100644 string.h diff --git a/assert.h b/assert.h deleted file mode 100644 index e69de29..0000000 diff --git a/include/assert.h b/include/assert.h index e69de29..992af2f 100644 --- a/include/assert.h +++ b/include/assert.h @@ -0,0 +1 @@ +extern void assert(int condition); diff --git a/include/stdio.h b/include/stdio.h index 57e59df..e22667f 100644 --- a/include/stdio.h +++ b/include/stdio.h @@ -1 +1 @@ -extern int printf(char *, ...); +extern int printf(char *format, ...); diff --git a/stdio.h b/stdio.h deleted file mode 100644 index 57e59df..0000000 --- a/stdio.h +++ /dev/null @@ -1 +0,0 @@ -extern int printf(char *, ...); diff --git a/stdlib.h b/stdlib.h deleted file mode 100644 index e69de29..0000000 diff --git a/string.h b/string.h deleted file mode 100644 index e69de29..0000000