mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 02:47: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:
parent
4dcc26e940
commit
da1706d697
1 changed files with 0 additions and 20 deletions
|
@ -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
|
|
Loading…
Add table
Add a link
Reference in a new issue