This is the mail archive of the newlib@sourceware.org mailing list for the newlib project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[PATCH 02/24] iconv: remove TRAD_SYNOPSIS


Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
---
 newlib/libc/iconv/lib/iconv.c | 40 +---------------------------------------
 1 file changed, 1 insertion(+), 39 deletions(-)

diff --git a/newlib/libc/iconv/lib/iconv.c b/newlib/libc/iconv/lib/iconv.c
index 8214a7874..9d9d6a717 100644
--- a/newlib/libc/iconv/lib/iconv.c
+++ b/newlib/libc/iconv/lib/iconv.c
@@ -41,7 +41,7 @@ INDEX
 INDEX
 	_iconv_close_r
 
-ANSI_SYNOPSIS
+SYNOPSIS
 	#include <iconv.h>
 	iconv_t iconv_open (const char *<[to]>, const char *<[from]>);
 	int iconv_close (iconv_t <[cd]>);
@@ -58,44 +58,6 @@ ANSI_SYNOPSIS
 	                 size_t *<[inbytesleft]>, 
 		         char **<[outbuf]>, size_t *<[outbytesleft]>);
 
-TRAD_SYNOPSIS
-	#include <iconv.h>
-        size_t iconv (<[cd]>, <[in]>, <[inleft]>, <[out]>, <[outleft]>);
-	iconv_t <[cd]>;
-	char **<[in]>;
-	size_t *<[inleft]>; 
-        char **<[out]>;
-       	size_t *<[outleft]>);
-
-	#include <iconv.h>
-	iconv_t iconv_open (<[to]>, <[from]>);
-	const char *<[to]>;
-       	const char *<[from]>;
-
-	#include <iconv.h>
-	int iconv_close (<[cd]>);
-	iconv_t <[cd]>;
-
-	#include <iconv.h>
-        size_t _iconv_r (<[rptr]>, <[cd]>, <[in]>, <[inleft]>, <[out]>, <[outleft]>);
-	struct _reent *<[rptr]>;
-	iconv_t <[cd]>;
-	const char **<[in]>;
-	size_t *<[inleft]>; 
-        char **<[out]>;
-       	size_t *<[outleft]>);
-
-	#include <iconv.h>
-	iconv_t _iconv_open_r (<[rptr]>, <[to]>, <[from]>);
-	struct _reent *<[rptr]>;
-	const char *<[to]>;
-       	const char *<[from]>;
-
-	#include <iconv.h>
-	int iconv_close (<[rptr]>, <[cd]>);
-	struct _reent *<[rptr]>;
-	iconv_t <[cd]>;
-
 DESCRIPTION
 The function <<iconv>> converts characters from <[in]> which are in one
 encoding to characters of another encoding, outputting them to <[out]>.
-- 
2.15.0


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]