summaryrefslogtreecommitdiff
path: root/include/wchar.h
diff options
context:
space:
mode:
authorTim J. Robbins <tjr@FreeBSD.org>2002-09-21 08:55:16 +0000
committerTim J. Robbins <tjr@FreeBSD.org>2002-09-21 08:55:16 +0000
commit7ca9f09d6e48e2761ac3e393750aed22ac79b679 (patch)
tree65bb90041cbec2e2fecb9211ac42d96e6157bf9f /include/wchar.h
parent668b05c376664723b9e779b1293b14055d053b93 (diff)
downloadsrc-test2-7ca9f09d6e48e2761ac3e393750aed22ac79b679.tar.gz
src-test2-7ca9f09d6e48e2761ac3e393750aed22ac79b679.zip
Notes
Diffstat (limited to 'include/wchar.h')
-rw-r--r--include/wchar.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/include/wchar.h b/include/wchar.h
index 4877d3b93333..d13ba1fbd425 100644
--- a/include/wchar.h
+++ b/include/wchar.h
@@ -130,8 +130,6 @@ wchar_t *wcscpy(wchar_t * __restrict, const wchar_t * __restrict);
size_t wcscspn(const wchar_t *, const wchar_t *);
size_t wcsftime(wchar_t * __restrict, size_t, const wchar_t * __restrict,
const struct tm * __restrict);
-size_t wcslcat(wchar_t *, const wchar_t *, size_t);
-size_t wcslcpy(wchar_t *, const wchar_t *, size_t);
size_t wcslen(const wchar_t *);
wchar_t *wcsncat(wchar_t * __restrict, const wchar_t * __restrict,
size_t);
@@ -160,6 +158,11 @@ wchar_t *wmemset(wchar_t *, wchar_t, size_t);
int wcswidth(const wchar_t *, size_t);
int wcwidth(wchar_t);
#endif
+
+#if __BSD_VISIBLE
+size_t wcslcat(wchar_t *, const wchar_t *, size_t);
+size_t wcslcpy(wchar_t *, const wchar_t *, size_t);
+#endif
__END_DECLS
#define getwc(fp) fgetwc(fp)