]> sourceware.org Git - newlib-cygwin.git/commitdiff
sys: remove TRAD_SYNOPSIS
authorYaakov Selkowitz <yselkowi@redhat.com>
Thu, 30 Nov 2017 08:21:24 +0000 (02:21 -0600)
committerYaakov Selkowitz <yselkowi@redhat.com>
Fri, 1 Dec 2017 09:41:52 +0000 (03:41 -0600)
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
newlib/libc/sys/linux/getdate.c
newlib/libc/sys/linux/pread64.c
newlib/libc/sys/linux/pwrite64.c
newlib/libc/sys/rdos/getenv.c

index 5c056c7508240c005f82668b50886c3bf93d993d..0e689f99a8a3bd06365b464d10cc0e4ed3b1ab65 100644 (file)
@@ -27,20 +27,11 @@ INDEX
 INDEX
         getdate_r
 
-ANSI_SYNOPSIS
+SYNOPSIS
         #include <time.h>
         struct tm *getdate(const char *<[string]>);
         int getdate_r(const char *<[string]>, struct tm *<[res]>);
 
-TRAD_SYNOPSIS
-        #include <time.h>
-        struct tm *getdate(<[string]>);
-        const char *<[string]>;
-
-        int getdate_r(<[string]>, <[res]>);
-        const char *<[string]>;
-        struct tm *<[res]>;
-
 DESCRIPTION
 <<getdate>> reads a file which is specified by the environment variable:
 DATEMSK.  This file contains a number of formats valid for input to the
index c4bdca706e336891d9db4a3e100fc2f82549938b..3ced04818439cf36deddb06d8fd29466194ab3ff 100644 (file)
@@ -5,18 +5,10 @@ FUNCTION
 INDEX
        pread64
 
-ANSI_SYNOPSIS
+SYNOPSIS
        #include <unistd.h>
        ssize_t pread64(int <[fd]>, void *<[buf]>, size_t <[n]>, loff_t <[off]>);
 
-TRAD_SYNOPSIS
-       #include <unistd.h>
-       ssize_t pread64(<[fd]>, <[buf]>, <[n]>, <[off]>)
-       int <[fd]>;
-       void *<[buf]>;
-       size_t <[n]>;
-       loff_t <[off]>;
-
 DESCRIPTION
 The <<pread64>> function is similar to <<pread>>.  The only difference is
 that it operates on large files and so takes a 64-bit offset.  Like <<pread>>>,
index f1d678493748107728cb967cf028bee2136d7124..87674994344f3406c18db548b32e2a571a8b67a8 100644 (file)
@@ -5,18 +5,10 @@ FUNCTION
 INDEX
        pwrite64
 
-ANSI_SYNOPSIS
+SYNOPSIS
        #include <unistd.h>
        ssize_t pwrite64(int <[fd]>, void *<[buf]>, size_t <[n]>, loff_t <[off]>);
 
-TRAD_SYNOPSIS
-       #include <unistd.h>
-       ssize_t pwrite64(<[fd]>, <[buf]>, <[n]>, <[off]>)
-       int <[fd]>;
-       void *<[buf]>;
-       size_t <[n]>;
-       loff_t <[off]>;
-
 DESCRIPTION
 The <<pwrite64>> function is similar to <<pwrite>>.  The only difference is
 that it operates on large files and so takes a 64-bit offset.  Like <<pwrite>>>,
index 933ea4d768536e23ba19033c7017d409e39adeb4..1787769e3b8a4fda64382079b4fdfc757fefc23b 100644 (file)
@@ -32,15 +32,10 @@ INDEX
 INDEX
        environ
 
-ANSI_SYNOPSIS
+SYNOPSIS
        #include <stdlib.h>
        char *getenv(const char *<[name]>);
 
-TRAD_SYNOPSIS
-       #include <stdlib.h>
-       char *getenv(<[name]>)
-       char *<[name]>;
-
 DESCRIPTION
 <<getenv>> searches the list of environment variable names and values
 (using the global pointer ``<<char **environ>>'') for a variable whose
This page took 0.033746 seconds and 5 git commands to generate.