1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-27 11:57:35 +00:00

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.
This commit is contained in:
Tim Schumacher 2023-01-18 10:34:47 +01:00 committed by Jelle Raaijmakers
parent 4dcc26e940
commit da1706d697

View file

@ -1,20 +0,0 @@
/*
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <stddef.h>
#include <sys/cdefs.h>
__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