summaryrefslogtreecommitdiff
path: root/libc/src/stdlib/strfromf.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libc/src/stdlib/strfromf.cpp')
-rw-r--r--libc/src/stdlib/strfromf.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/libc/src/stdlib/strfromf.cpp b/libc/src/stdlib/strfromf.cpp
index 55ede003134b..14dbfdb25bab 100644
--- a/libc/src/stdlib/strfromf.cpp
+++ b/libc/src/stdlib/strfromf.cpp
@@ -7,10 +7,7 @@
//===----------------------------------------------------------------------===//
#include "src/stdlib/strfromf.h"
-#include "src/__support/CPP/limits.h"
#include "src/__support/macros/config.h"
-#include "src/stdio/printf_core/core_structs.h"
-#include "src/stdio/printf_core/error_mapper.h"
#include "src/stdlib/str_from_util.h"
namespace LIBC_NAMESPACE_DECL {
@@ -39,12 +36,7 @@ LLVM_LIBC_FUNCTION(int, strfromf,
if (n > 0)
wb.buff[wb.buff_cur] = '\0';
- if (writer.get_chars_written() > cpp::numeric_limits<int>::max()) {
- libc_errno =
- printf_core::internal_error_to_errno(-printf_core::OVERFLOW_ERROR);
- return -1;
- }
- return static_cast<int>(writer.get_chars_written());
+ return writer.get_chars_written();
}
} // namespace LIBC_NAMESPACE_DECL