LibC: Add stub for iswprint
Without the declaration of iswprint libarchive will not compile.
This commit is contained in:
parent
bab83ecc95
commit
afb47d1741
Notes:
sideshowbarker
2024-07-18 08:44:49 +09:00
Author: https://github.com/kennethmyhra Commit: https://github.com/SerenityOS/serenity/commit/afb47d1741f Pull-request: https://github.com/SerenityOS/serenity/pull/8886 Reviewed-by: https://github.com/gunnarbeutner ✅
2 changed files with 7 additions and 0 deletions
|
@ -21,4 +21,10 @@ int iswctype(wint_t, wctype_t)
|
|||
dbgln("FIXME: Implement iswctype()");
|
||||
TODO();
|
||||
}
|
||||
|
||||
int iswprint(wint_t)
|
||||
{
|
||||
dbgln("FIXME: Implement iswprint()");
|
||||
TODO();
|
||||
}
|
||||
}
|
||||
|
|
|
@ -12,5 +12,6 @@ __BEGIN_DECLS
|
|||
|
||||
wctype_t wctype(const char* name);
|
||||
int iswctype(wint_t wc, wctype_t desc);
|
||||
int iswprint(wint_t wc);
|
||||
|
||||
__END_DECLS
|
||||
|
|
Loading…
Add table
Reference in a new issue