summaryrefslogtreecommitdiff
path: root/manual/filesys.texi
diff options
context:
space:
mode:
Diffstat (limited to 'manual/filesys.texi')
-rw-r--r--manual/filesys.texi16
1 files changed, 8 insertions, 8 deletions
diff --git a/manual/filesys.texi b/manual/filesys.texi
index 31325268f9..39d4082b7f 100644
--- a/manual/filesys.texi
+++ b/manual/filesys.texi
@@ -714,9 +714,9 @@ The prototype for this function is declared in the header file
@end deftypefun
@comment stdio.h
-@comment ANSI
+@comment ISO
@deftypefun int remove (const char *@var{filename})
-This is the ANSI C function to remove a file. It works like
+This is the @w{ISO C} function to remove a file. It works like
@code{unlink} for files and like @code{rmdir} for directories.
@code{remove} is declared in @file{stdio.h}.
@pindex stdio.h
@@ -729,7 +729,7 @@ The @code{rename} function is used to change a file's name.
@cindex renaming a file
@comment stdio.h
-@comment ANSI
+@comment ISO
@deftypefun int rename (const char *@var{oldname}, const char *@var{newname})
The @code{rename} function renames the file name @var{oldname} with
@var{newname}. The file formerly accessible under the name
@@ -1981,19 +1981,19 @@ These facilities are declared in the header file @file{stdio.h}.
@pindex stdio.h
@comment stdio.h
-@comment ANSI
+@comment ISO
@deftypefun {FILE *} tmpfile (void)
This function creates a temporary binary file for update mode, as if by
calling @code{fopen} with mode @code{"wb+"}. The file is deleted
automatically when it is closed or when the program terminates. (On
-some other ANSI C systems the file may fail to be deleted if the program
+some other @w{ISO C} systems the file may fail to be deleted if the program
terminates abnormally).
This function is reentrant.
@end deftypefun
@comment stdio.h
-@comment ANSI
+@comment ISO
@deftypefun {char *} tmpnam (char *@var{result})
This function constructs and returns a file name that is a valid file
name and that does not name any existing file. If the @var{result}
@@ -2021,7 +2021,7 @@ This function is reentrant because the non-reentrant situation of
@end deftypefun
@comment stdio.h
-@comment ANSI
+@comment ISO
@deftypevr Macro int L_tmpnam
The value of this macro is an integer constant expression that represents
the minimum allocation size of a string large enough to hold the
@@ -2029,7 +2029,7 @@ file name generated by the @code{tmpnam} function.
@end deftypevr
@comment stdio.h
-@comment ANSI
+@comment ISO
@deftypevr Macro int TMP_MAX
The macro @code{TMP_MAX} is a lower bound for how many temporary names
you can create with @code{tmpnam}. You can rely on being able to call