vis: Add prototypes for strnvis() and strnunvis() variants

Warned-by: gcc
This commit is contained in:
Guillem Jover
2021-03-02 05:18:04 +01:00
parent 25e88f6479
commit 50b50a4330
2 changed files with 8 additions and 0 deletions

View File

@@ -564,12 +564,16 @@ strunvis(char *dst, const char *src)
* NetBSD: 2012, strnunvis(char *dst, size_t dlen, const char *src);
*/
ssize_t
strnunvis_openbsd(char *, const char *, size_t);
ssize_t
strnunvis_openbsd(char *dst, const char *src, size_t dlen)
{
return strnunvisx(dst, dlen, src, 0);
}
libbsd_symver_default(strnunvis, strnunvis_openbsd, LIBBSD_0.2);
int
strnunvis_netbsd(char *, size_t, const char *);
int
strnunvis_netbsd(char *dst, size_t dlen, const char *src)
{