]> sourceware.org Git - newlib-cygwin.git/commitdiff
microblaze: remove TRAD_SYNOPSIS
authorYaakov Selkowitz <yselkowi@redhat.com>
Thu, 30 Nov 2017 07:37:32 +0000 (01:37 -0600)
committerYaakov Selkowitz <yselkowi@redhat.com>
Fri, 1 Dec 2017 09:41:50 +0000 (03:41 -0600)
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
newlib/libc/machine/microblaze/abort.c
newlib/libc/machine/microblaze/strcmp.c
newlib/libc/machine/microblaze/strcpy.c
newlib/libc/machine/microblaze/strlen.c

index b2c5a00b271c75a1cac36906e0acec7f096eeac4..82daebe43521cc0fe7a597880f3a97c114f6eb8d 100644 (file)
@@ -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.
index 2f033741275e2a2bb6e4fa0c4aceb885221829c2..fc7dc2143bd2c45df9a90716a8ed91ec0ee6d81f 100644 (file)
@@ -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]>.
index 0819ee511f3162199246dc939a736a46c53e4b0e..44ba382c75e354d175a010046efd60c0d3efdafe 100644 (file)
@@ -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
index 51387cd9c03bfdcee0adee955f931e58d35fe43e..ddd9e6a82d12728eb4b5cddd8abf8147791ec3c2 100644 (file)
@@ -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
This page took 0.035193 seconds and 5 git commands to generate.