aboutsummaryrefslogtreecommitdiff
path: root/newlib/libc/stdio/feof.c
diff options
context:
space:
mode:
authorYaakov Selkowitz <yselkowi@redhat.com>2017-11-30 02:05:02 -0600
committerYaakov Selkowitz <yselkowi@redhat.com>2017-12-01 03:41:51 -0600
commitc7ef9668cff35d1d7b60c9881e786010177b4a22 (patch)
tree98e13141e1d75c088732755ec8068a6bf3e3140a /newlib/libc/stdio/feof.c
parentb88cfbc1e56810282303eb4edaa6d79a8c100643 (diff)
downloadnewlib-c7ef9668cff35d1d7b60c9881e786010177b4a22.zip
newlib-c7ef9668cff35d1d7b60c9881e786010177b4a22.tar.gz
newlib-c7ef9668cff35d1d7b60c9881e786010177b4a22.tar.bz2
stdio: remove TRAD_SYNOPSIS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
Diffstat (limited to 'newlib/libc/stdio/feof.c')
-rw-r--r--newlib/libc/stdio/feof.c12
1 files changed, 1 insertions, 11 deletions
diff --git a/newlib/libc/stdio/feof.c b/newlib/libc/stdio/feof.c
index 7aadd82..617ce58 100644
--- a/newlib/libc/stdio/feof.c
+++ b/newlib/libc/stdio/feof.c
@@ -24,7 +24,7 @@ INDEX
INDEX
feof_unlocked
-ANSI_SYNOPSIS
+SYNOPSIS
#include <stdio.h>
int feof(FILE *<[fp]>);
@@ -32,16 +32,6 @@ ANSI_SYNOPSIS
#include <stdio.h>
int feof_unlocked(FILE *<[fp]>);
-TRAD_SYNOPSIS
- #include <stdio.h>
- int feof(<[fp]>)
- FILE *<[fp]>;
-
- #define _BSD_SOURCE
- #include <stdio.h>
- int feof_unlocked(<[fp]>)
- FILE *<[fp]>;
-
DESCRIPTION
<<feof>> tests whether or not the end of the file identified by <[fp]>
has been reached.