blob: 2f94ab1ec2b0eaebc0e7ba66627c4baf1a6694ba (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
@node unlink
@section @code{unlink}
@findex unlink
POSIX specification: @url{http://www.opengroup.org/onlinepubs/9699919799/functions/unlink.html}
Gnulib module: ---
Portability problems fixed by Gnulib:
@itemize
@end itemize
Portability problems not fixed by Gnulib:
@itemize
@item
Removing an open file is non-portable: On Unix this allows the programs that
have the file already open to continue working with it; the file's storage
is only freed when the no process has the file open any more. On Windows,
the attempt to remove an open file fails.
@end itemize
|