Files
ladybird/Libraries/LibC
Ben Wiederhake f7fe63c6b0 LibC: Mark compilation-unit-only functions as static
This enables a nice warning in case a function becomes dead code.
For example with the unused function malloc_good_size() :^)

I found these places by using -Wmissing-declarations.

The Kernel still shows these issues, which I think are false-positives,
but don't want to touch:
- Libraries/LibC/crt0.cpp:41:5: int _start(int, char**, char**)
	Not sure how to handle this.
- Libraries/LibC/cxxabi.cpp:48:5: int __cxa_atexit(AtExitFunction, void*, void*)
- Libraries/LibC/cxxabi.cpp:58:6: void __cxa_finalize(void*)
	Not sure how to tell the compiler that the compiler is already using them.
- Libraries/LibC/libcinit.cpp:36:6: void __libc_init()
- Libraries/LibC/libcinit.cpp:55:19: void __stack_chk_fail()
- Libraries/LibC/malloc.cpp:430:6: void __malloc_init()
- Libraries/LibC/stdio.cpp:562:6: void __stdio_init()
	These are ninja-imported by other LibC functions.
	Maybe we should have some kind of "internals.h" header.
2020-08-12 20:40:59 +02:00
..
2020-04-06 11:09:01 +02:00
2020-02-16 10:47:54 +01:00
2020-02-19 16:08:28 +01:00
2020-04-10 13:09:35 +02:00
2020-05-30 15:01:18 +02:00
2020-01-18 09:45:54 +01:00
2020-06-23 14:12:20 +02:00
2020-07-28 17:07:22 +02:00
2020-02-02 10:58:45 +01:00
2020-08-10 11:51:45 +02:00
2020-08-10 11:51:45 +02:00
2020-07-06 10:01:14 +02:00
2020-08-06 13:36:06 +02:00
2020-08-01 08:39:26 +02:00
2020-08-01 08:39:26 +02:00
2020-07-11 11:33:33 +02:00
2020-07-04 10:49:36 +02:00
2020-05-07 23:32:11 +02:00