diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2015-01-12 20:58:08 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2015-01-12 20:58:08 +0000 |
commit | fac61600b0c9eb399c57296359628367827bac16 (patch) | |
tree | 6805ae79e53338aa7ccf79fcf4cfcbe1299d2e54 /include/wchar.h | |
parent | 8f6c0cefa75e6eae56573467c4d3b5bfa7bde6de (diff) |
Add fgetwln(3) from FreeBSD and bump libc minor revision.
Diffstat (limited to 'include/wchar.h')
-rw-r--r-- | include/wchar.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/wchar.h b/include/wchar.h index 0ba27368441..b2513e7e432 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wchar.h,v 1.26 2014/07/12 02:48:33 guenther Exp $ */ +/* $OpenBSD: wchar.h,v 1.27 2015/01/12 20:58:07 millert Exp $ */ /* $NetBSD: wchar.h,v 1.16 2003/03/07 07:11:35 tshiozak Exp $ */ /*- @@ -201,6 +201,7 @@ unsigned long long int wcstoull(const wchar_t * __restrict, wint_t ungetwc(wint_t, FILE *); wint_t fgetwc(FILE *); +wchar_t *fgetwln(FILE * __restrict, size_t * __restrict); wchar_t *fgetws(wchar_t * __restrict, int, FILE * __restrict) __attribute__ ((__bounded__(__wcstring__,1,2))); wint_t getwc(FILE *); |