From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 72517 invoked by alias); 1 Dec 2017 09:42:42 -0000 Mailing-List: contact newlib-cvs-help@sourceware.org; run by ezmlm Precedence: bulk List-Id: List-Subscribe: List-Archive: List-Post: List-Help: , Sender: newlib-cvs-owner@sourceware.org Received: (qmail 72500 invoked by uid 9642); 1 Dec 2017 09:42:41 -0000 Date: Fri, 01 Dec 2017 09:42:00 -0000 Message-ID: <20171201094241.72498.qmail@sourceware.org> Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: Yaakov Selkowitz To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] microblaze: remove TRAD_SYNOPSIS X-Act-Checkin: newlib-cygwin X-Git-Author: Yaakov Selkowitz X-Git-Refname: refs/heads/master X-Git-Oldrev: 59235deeec436e8e7f39d9ac4447fab30413f963 X-Git-Newrev: 4e8c64b928dad78c5d39d6c729ea062b516afc83 X-SW-Source: 2017-q4/txt/msg00051.txt.bz2 https://sourceware.org/git/gitweb.cgi?p=newlib-cygwin.git;h=4e8c64b928dad78c5d39d6c729ea062b516afc83 commit 4e8c64b928dad78c5d39d6c729ea062b516afc83 Author: Yaakov Selkowitz Date: Thu Nov 30 01:37:32 2017 -0600 microblaze: remove TRAD_SYNOPSIS Signed-off-by: Yaakov Selkowitz Diff: --- newlib/libc/machine/microblaze/abort.c | 6 +----- newlib/libc/machine/microblaze/strcmp.c | 8 +------- newlib/libc/machine/microblaze/strcpy.c | 8 +------- newlib/libc/machine/microblaze/strlen.c | 7 +------ 4 files changed, 4 insertions(+), 25 deletions(-) diff --git a/newlib/libc/machine/microblaze/abort.c b/newlib/libc/machine/microblaze/abort.c index b2c5a00..82daebe 100644 --- a/newlib/libc/machine/microblaze/abort.c +++ b/newlib/libc/machine/microblaze/abort.c @@ -15,14 +15,10 @@ FUNCTION INDEX abort -ANSI_SYNOPSIS +SYNOPSIS #include void abort(void); -TRAD_SYNOPSIS - #include - void abort(); - DESCRIPTION Use <> to signal that your program has detected a condition it cannot deal with. Normally, <> ends your program's execution. diff --git a/newlib/libc/machine/microblaze/strcmp.c b/newlib/libc/machine/microblaze/strcmp.c index 2f03374..fc7dc21 100644 --- a/newlib/libc/machine/microblaze/strcmp.c +++ b/newlib/libc/machine/microblaze/strcmp.c @@ -34,16 +34,10 @@ FUNCTION INDEX strcmp -ANSI_SYNOPSIS +SYNOPSIS #include int strcmp(const char *<[a]>, const char *<[b]>); -TRAD_SYNOPSIS - #include - int strcmp(<[a]>, <[b]>) - char *<[a]>; - char *<[b]>; - DESCRIPTION <> compares the string at <[a]> to the string at <[b]>. diff --git a/newlib/libc/machine/microblaze/strcpy.c b/newlib/libc/machine/microblaze/strcpy.c index 0819ee5..44ba382 100644 --- a/newlib/libc/machine/microblaze/strcpy.c +++ b/newlib/libc/machine/microblaze/strcpy.c @@ -34,16 +34,10 @@ FUNCTION INDEX strcpy -ANSI_SYNOPSIS +SYNOPSIS #include char *strcpy(char *restrict <[dst]>, const char *restrict <[src]>); -TRAD_SYNOPSIS - #include - char *strcpy(<[dst]>, <[src]>) - char *<[dst]>; - char *<[src]>; - DESCRIPTION <> copies the string pointed to by <[src]> (including the terminating null character) to the array diff --git a/newlib/libc/machine/microblaze/strlen.c b/newlib/libc/machine/microblaze/strlen.c index 51387cd..ddd9e6a 100644 --- a/newlib/libc/machine/microblaze/strlen.c +++ b/newlib/libc/machine/microblaze/strlen.c @@ -34,15 +34,10 @@ FUNCTION INDEX strlen -ANSI_SYNOPSIS +SYNOPSIS #include size_t strlen(const char *<[str]>); -TRAD_SYNOPSIS - #include - size_t strlen(<[str]>) - char *<[src]>; - DESCRIPTION The <> function works out the length of the string starting at <<*<[str]>>> by counting chararacters until it