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:39:06 +0300
committerYaakov Selkowitz <yselkowi@redhat.com>2017-12-01 12:41:50 +0300
commit191b4f35bc0026ef3f1f6b3bcaf0524810cbd358 (patch)
tree8f05a2d3c9c684ad8d69564afb00232a8815d6a6 /newlib/libc/misc
parent1f1e477554ce58dec2cb0b4629164e420cca75f0 (diff)
misc: remove TRAD_SYNOPSIS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/misc')
-rw-r--r--newlib/libc/misc/ffs.c6
-rw-r--r--newlib/libc/misc/lock.c2
-rw-r--r--newlib/libc/misc/unctrl.c7
3 files changed, 3 insertions, 12 deletions
diff --git a/newlib/libc/misc/ffs.c b/newlib/libc/misc/ffs.c
index ba5700920..068f25481 100644
--- a/newlib/libc/misc/ffs.c
+++ b/newlib/libc/misc/ffs.c
@@ -5,14 +5,10 @@ FUNCTION
INDEX
ffs
-ANSI_SYNOPSIS
+SYNOPSIS
#include <strings.h>
int ffs(int <[word]>);
-TRAD_SYNOPSIS
- #include <strings.h>
- int ffs(<[word]>);
-
DESCRIPTION
<<ffs>> returns the first bit set in a word.
diff --git a/newlib/libc/misc/lock.c b/newlib/libc/misc/lock.c
index a76317668..545511e78 100644
--- a/newlib/libc/misc/lock.c
+++ b/newlib/libc/misc/lock.c
@@ -42,7 +42,7 @@ INDEX
INDEX
__retarget_lock_release_recursive
-ANSI_SYNOPSIS
+SYNOPSIS
#include <lock.h>
struct __lock __lock___sinit_recursive_mutex;
struct __lock __lock___sfp_recursive_mutex;
diff --git a/newlib/libc/misc/unctrl.c b/newlib/libc/misc/unctrl.c
index fa0b90ff1..e2cdb3861 100644
--- a/newlib/libc/misc/unctrl.c
+++ b/newlib/libc/misc/unctrl.c
@@ -7,16 +7,11 @@ INDEX
INDEX
unctrllen
-ANSI_SYNOPSIS
+SYNOPSIS
#include <unctrl.h>
char *unctrl(int <[c]>);
int unctrllen(int <[c]>);
-TRAD_SYNOPSIS
- #include <unctrl.h>
- char *unctrl(<[c]>);
- int unctrllen(<[c]>);
-
DESCRIPTION
<<unctrl>> is a macro which returns the printable representation of <[c]>
as a string.