LibC: Add stub for iswprint

Without the declaration of iswprint libarchive will not compile.
This commit is contained in:
Kenneth Myhra 2021-07-19 04:42:54 -07:00 committed by Gunnar Beutner
parent bab83ecc95
commit afb47d1741
Notes: sideshowbarker 2024-07-18 08:44:49 +09:00
2 changed files with 7 additions and 0 deletions

View file

@ -21,4 +21,10 @@ int iswctype(wint_t, wctype_t)
dbgln("FIXME: Implement iswctype()");
TODO();
}
int iswprint(wint_t)
{
dbgln("FIXME: Implement iswprint()");
TODO();
}
}

View file

@ -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