From da1706d69763894e2c0879d40e7efb935ad89347 Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Wed, 18 Jan 2023 10:34:47 +0100 Subject: [PATCH] LibC: Remove the stub iconv header This was added in 2019 to trick GCC into accepting a newlib build, but now this no longer seems to be required to build the toolchain. --- Userland/Libraries/LibC/iconv.h | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 Userland/Libraries/LibC/iconv.h diff --git a/Userland/Libraries/LibC/iconv.h b/Userland/Libraries/LibC/iconv.h deleted file mode 100644 index 925e045fc5..0000000000 --- a/Userland/Libraries/LibC/iconv.h +++ /dev/null @@ -1,20 +0,0 @@ -/* - * Copyright (c) 2018-2020, Andreas Kling - * - * SPDX-License-Identifier: BSD-2-Clause - */ - -#pragma once - -#include -#include - -__BEGIN_DECLS - -typedef void* iconv_t; - -extern iconv_t iconv_open(char const* tocode, char const* fromcode); -extern size_t iconv(iconv_t, char** inbuf, size_t* inbytesleft, char** outbuf, size_t* outbytesleft); -extern int iconv_close(iconv_t); - -__END_DECLS