summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/fgetstr.c
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2005-05-14 23:51:02 +0000
committerchristos <christos@NetBSD.org>2005-05-14 23:51:02 +0000
commitf432bbb6fd73bc9d4d16cf9c092973e4e42be033 (patch)
tree56cbac36b68d8cb044f5972fa52a2acea82b3a69 /lib/libc/stdio/fgetstr.c
parentf023cb8f18705041e5180cb1052cdd3f01e81b9b (diff)
Add the missing wide char support functions from freebsd.
XXX: long double support is missing until we get gdtoa, and add the necessary wide functions.
Diffstat (limited to 'lib/libc/stdio/fgetstr.c')
-rw-r--r--lib/libc/stdio/fgetstr.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/lib/libc/stdio/fgetstr.c b/lib/libc/stdio/fgetstr.c
index f04dcf60154..0a74389f015 100644
--- a/lib/libc/stdio/fgetstr.c
+++ b/lib/libc/stdio/fgetstr.c
@@ -1,4 +1,4 @@
-/* $NetBSD: fgetstr.c,v 1.2 2004/05/10 16:47:11 drochner Exp $ */
+/* $NetBSD: fgetstr.c,v 1.3 2005/05/14 23:51:02 christos Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -37,7 +37,7 @@
#if 0
static char sccsid[] = "@(#)fgetline.c 8.1 (Berkeley) 6/4/93";
#else
-__RCSID("$NetBSD: fgetstr.c,v 1.2 2004/05/10 16:47:11 drochner Exp $");
+__RCSID("$NetBSD: fgetstr.c,v 1.3 2005/05/14 23:51:02 christos Exp $");
#endif
#endif /* LIBC_SCCS and not lint */
@@ -50,8 +50,6 @@ __RCSID("$NetBSD: fgetstr.c,v 1.2 2004/05/10 16:47:11 drochner Exp $");
#include "reentrant.h"
#include "local.h"
-int __slbexpand __P((FILE *, size_t));
-
/*
* Expand the line buffer. Return -1 on error.
#ifdef notdef