diff options
author | Marvin Borner | 2020-03-27 15:45:25 +0100 |
---|---|---|
committer | Marvin Borner | 2020-03-27 15:45:25 +0100 |
commit | e5559ad7a555b6f579bda0c6007d61d7a03ae2b9 (patch) | |
tree | de3ad6fee2c527ecacc109d0104c8803d4447221 /src/kernel/lib | |
parent | cbf21c7f3cced00bd810f102cfa0581cf9b8c402 (diff) |
Added and applied tidy command
Diffstat (limited to 'src/kernel/lib')
-rw-r--r-- | src/kernel/lib/lib.h | 2 | ||||
-rw-r--r-- | src/kernel/lib/math.h | 2 | ||||
-rw-r--r-- | src/kernel/lib/memory.c | 2 | ||||
-rw-r--r-- | src/kernel/lib/stdio.h | 2 | ||||
-rw-r--r-- | src/kernel/lib/stdlib.h | 2 | ||||
-rw-r--r-- | src/kernel/lib/string.h | 2 |
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 |