aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/lib')
-rw-r--r--src/kernel/lib/lib.h2
-rw-r--r--src/kernel/lib/math.h2
-rw-r--r--src/kernel/lib/memory.c2
-rw-r--r--src/kernel/lib/stdio.h2
-rw-r--r--src/kernel/lib/stdlib.h2
-rw-r--r--src/kernel/lib/string.h2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/kernel/lib/lib.h b/src/kernel/lib/lib.h
index e94ad19..b2b7056 100644
--- a/src/kernel/lib/lib.h
+++ b/src/kernel/lib/lib.h
@@ -35,4 +35,4 @@ void memory_init();
uint32_t memory_get_all();
-#endif
+#endif \ No newline at end of file
diff --git a/src/kernel/lib/math.h b/src/kernel/lib/math.h
index c9abf7d..57877ad 100644
--- a/src/kernel/lib/math.h
+++ b/src/kernel/lib/math.h
@@ -3,4 +3,4 @@
int pow(int base, int exp);
-#endif
+#endif \ No newline at end of file
diff --git a/src/kernel/lib/memory.c b/src/kernel/lib/memory.c
index 9ffd330..f9e0054 100644
--- a/src/kernel/lib/memory.c
+++ b/src/kernel/lib/memory.c
@@ -66,4 +66,4 @@ uint32_t memory_get_free()
uint32_t memory_get_all()
{
return total_memory;
-}
+} \ No newline at end of file
diff --git a/src/kernel/lib/stdio.h b/src/kernel/lib/stdio.h
index 8299dea..e1d7b9a 100644
--- a/src/kernel/lib/stdio.h
+++ b/src/kernel/lib/stdio.h
@@ -15,4 +15,4 @@ void printf(const char *fmt, ...);
void serial_printf(const char *fmt, ...);
-#endif
+#endif \ No newline at end of file
diff --git a/src/kernel/lib/stdlib.h b/src/kernel/lib/stdlib.h
index 9cd9fab..18d933d 100644
--- a/src/kernel/lib/stdlib.h
+++ b/src/kernel/lib/stdlib.h
@@ -17,4 +17,4 @@ char *htoa(uint32_t n);
int htoi(char *str);
-#endif
+#endif \ No newline at end of file
diff --git a/src/kernel/lib/string.h b/src/kernel/lib/string.h
index fe925cb..7375953 100644
--- a/src/kernel/lib/string.h
+++ b/src/kernel/lib/string.h
@@ -19,4 +19,4 @@ char *strdup(const char *orig);
void strinv(char *str);
-#endif
+#endif \ No newline at end of file