Commit 7da57b293f96d0c52e5b76b539e934db49323ee2

Guillem Jover 2009-12-11T23:01:02

Remove traces of fgetwln, it was never included This function was exposed in the header file and the versioning symbol file, but the actual code was never here.

diff --git a/Versions b/Versions
index 5cdf9e0..3fc25dc 100644
--- a/Versions
+++ b/Versions
@@ -6,7 +6,6 @@ LIBBSD_0.0 {
     bsd_getopt; optreset;
     errc; warnc; verrc; vwarnc;
     fgetln;
-    fgetwln;
     fmtcheck;
     heapsort;
     humanize_number;
diff --git a/include/bsd/string.h b/include/bsd/string.h
index cf6368b..293e093 100644
--- a/include/bsd/string.h
+++ b/include/bsd/string.h
@@ -36,8 +36,6 @@ __BEGIN_DECLS
 size_t strlcpy(char *dst, const char *src, size_t siz);
 size_t strlcat(char *dst, const char *src, size_t siz);
 char *fgetln(FILE *fp, size_t *lenp);
-wchar_t *fgetwln(FILE * __restrict fp, size_t *lenp);
-
 void strmode(mode_t mode, char *str);
 __END_DECLS