Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-11-30 10:37:32 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2017-12-01 12:41:50 +0300
commit4e8c64b928dad78c5d39d6c729ea062b516afc83 (patch)
tree507611fa899f42248eb768c1a2875220d69290fd /newlib/libc/machine
parent59235deeec436e8e7f39d9ac4447fab30413f963 (diff)
microblaze: remove TRAD_SYNOPSIS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/machine')
-rw-r--r--newlib/libc/machine/microblaze/abort.c6
-rw-r--r--newlib/libc/machine/microblaze/strcmp.c8
-rw-r--r--newlib/libc/machine/microblaze/strcpy.c8
-rw-r--r--newlib/libc/machine/microblaze/strlen.c7
4 files changed, 4 insertions, 25 deletions
diff --git a/newlib/libc/machine/microblaze/abort.c b/newlib/libc/machine/microblaze/abort.c
index b2c5a00b2..82daebe43 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 <stdlib.h>
void abort(void);
-TRAD_SYNOPSIS
- #include <stdlib.h>
- void abort();
-
DESCRIPTION
Use <<abort>> to signal that your program has detected a condition it
cannot deal with. Normally, <<abort>> ends your program's execution.
diff --git a/newlib/libc/machine/microblaze/strcmp.c b/newlib/libc/machine/microblaze/strcmp.c
index 2f0337412..fc7dc2143 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 <string.h>
int strcmp(const char *<[a]>, const char *<[b]>);
-TRAD_SYNOPSIS
- #include <string.h>
- int strcmp(<[a]>, <[b]>)
- char *<[a]>;
- char *<[b]>;
-
DESCRIPTION
<<strcmp>> 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 0819ee511..44ba382c7 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 <string.h>
char *strcpy(char *restrict <[dst]>, const char *restrict <[src]>);
-TRAD_SYNOPSIS
- #include <string.h>
- char *strcpy(<[dst]>, <[src]>)
- char *<[dst]>;
- char *<[src]>;
-
DESCRIPTION
<<strcpy>> 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 51387cd9c..ddd9e6a82 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 <string.h>
size_t strlen(const char *<[str]>);
-TRAD_SYNOPSIS
- #include <string.h>
- size_t strlen(<[str]>)
- char *<[src]>;
-
DESCRIPTION
The <<strlen>> function works out the length of the string
starting at <<*<[str]>>> by counting chararacters until it