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 11:21:24 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2017-12-01 12:41:52 +0300
commitadfde9d773faa2c17ada9480c7a6a744bbd10c1f (patch)
treef8e426349e47da7bcc6b2e32ebc93ec253288cec /newlib/libc/sys/linux
parent352c8f2f0dd977f2b2d2dfb7087d701d85fd5361 (diff)
sys: remove TRAD_SYNOPSIS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/sys/linux')
-rw-r--r--newlib/libc/sys/linux/getdate.c11
-rw-r--r--newlib/libc/sys/linux/pread64.c10
-rw-r--r--newlib/libc/sys/linux/pwrite64.c10
3 files changed, 3 insertions, 28 deletions
diff --git a/newlib/libc/sys/linux/getdate.c b/newlib/libc/sys/linux/getdate.c
index 5c056c750..0e689f99a 100644
--- a/newlib/libc/sys/linux/getdate.c
+++ b/newlib/libc/sys/linux/getdate.c
@@ -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
diff --git a/newlib/libc/sys/linux/pread64.c b/newlib/libc/sys/linux/pread64.c
index c4bdca706..3ced04818 100644
--- a/newlib/libc/sys/linux/pread64.c
+++ b/newlib/libc/sys/linux/pread64.c
@@ -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>>>,
diff --git a/newlib/libc/sys/linux/pwrite64.c b/newlib/libc/sys/linux/pwrite64.c
index f1d678493..876749943 100644
--- a/newlib/libc/sys/linux/pwrite64.c
+++ b/newlib/libc/sys/linux/pwrite64.c
@@ -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>>>,