From 1644b19fff3b53e711dde7dce49a8b1cd280f97b Mon Sep 17 00:00:00 2001 From: millert <> Date: Mon, 12 Jan 2015 20:58:07 +0000 Subject: [PATCH] Add fgetwln(3) from FreeBSD and bump libc minor revision. --- src/include/wchar.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/include/wchar.h b/src/include/wchar.h index 0ba27368..b2513e7e 100644 --- a/src/include/wchar.h +++ b/src/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 *);