We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4c4b6bc commit c632701Copy full SHA for c632701
libc/src/stdlib/CMakeLists.txt
@@ -677,6 +677,9 @@ add_entrypoint_object(
677
libc.src.__support.macros.config
678
libc.src.__support.macros.attributes
679
libc.src.__support.File.file
680
+ libc.src.stdio.fflush
681
+ libc.src.stdio.fprintf
682
+ libc.src.stdlib.abort
683
)
684
685
add_header_library(
libc/src/stdlib/abort_handler_s.cpp
@@ -11,8 +11,9 @@
11
#include "hdr/types/errno_t.h"
12
#include "src/__support/common.h"
13
#include "src/__support/libc_errno.h"
14
-#include <stdio.h>
15
-#include <stdlib.h>
+#include "src/stdio/fflush.h"
+#include "src/stdio/fprintf.h"
16
+#include "src/stdlib/abort.h"
17
18
namespace LIBC_NAMESPACE_DECL {
19
0 commit comments