aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdlib/ecvtbuf.c
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-11-30 02:17:18 -0600
committerYaakov Selkowitz <yselkowi@redhat.com>2017-12-01 03:41:52 -0600
commita38fc79ee9f7ccef78adf91aba8f5ae374803dfe (patch)
tree3bc6d244fe6582cdd6e68558780ab1ef45f9100f /newlib/libc/stdlib/ecvtbuf.c
parenta60026253d244fd722ef153625defe16c4504010 (diff)
downloadnewlib-a38fc79ee9f7ccef78adf91aba8f5ae374803dfe.zip
newlib-a38fc79ee9f7ccef78adf91aba8f5ae374803dfe.tar.gz
newlib-a38fc79ee9f7ccef78adf91aba8f5ae374803dfe.tar.bz2
stdlib: remove TRAD_SYNOPSIS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/stdlib/ecvtbuf.c')
-rw-r--r--newlib/libc/stdlib/ecvtbuf.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/newlib/libc/stdlib/ecvtbuf.c b/newlib/libc/stdlib/ecvtbuf.c
index feaa33f..ee58c9a 100644
--- a/newlib/libc/stdlib/ecvtbuf.c
+++ b/newlib/libc/stdlib/ecvtbuf.c
@@ -7,7 +7,7 @@ INDEX
INDEX
fcvtbuf
-ANSI_SYNOPSIS
+SYNOPSIS
#include <stdio.h>
char *ecvtbuf(double <[val]>, int <[chars]>, int *<[decpt]>,
@@ -16,23 +16,6 @@ ANSI_SYNOPSIS
char *fcvtbuf(double <[val]>, int <[decimals]>, int *<[decpt]>,
int *<[sgn]>, char *<[buf]>);
-TRAD_SYNOPSIS
- #include <stdio.h>
-
- char *ecvtbuf(<[val]>, <[chars]>, <[decpt]>, <[sgn]>, <[buf]>);
- double <[val]>;
- int <[chars]>;
- int *<[decpt]>;
- int *<[sgn]>;
- char *<[buf]>;
-
- char *fcvtbuf(<[val]>, <[decimals]>, <[decpt]>, <[sgn]>, <[buf]>);
- double <[val]>;
- int <[decimals]>;
- int *<[decpt]>;
- int *<[sgn]>;
- char *<[buf]>;
-
DESCRIPTION
<<ecvtbuf>> and <<fcvtbuf>> produce (null-terminated) strings
of digits representating the <<double>> number <[val]>.