diff options
author | Janne Blomqvist <jb@gcc.gnu.org> | 2015-09-04 00:18:56 +0300 |
---|---|---|
committer | Janne Blomqvist <jb@gcc.gnu.org> | 2015-09-04 00:18:56 +0300 |
commit | 43ff5c7a2dd5912a3bf90bd0f9cc599ac3a3acce (patch) | |
tree | 593d7f86e1d9512136f291a704411e7af2722593 /libgfortran/io/unix.h | |
parent | c8c030589bd61290418753e766f26d8f99e8b074 (diff) | |
download | gcc-43ff5c7a2dd5912a3bf90bd0f9cc599ac3a3acce.zip gcc-43ff5c7a2dd5912a3bf90bd0f9cc599ac3a3acce.tar.gz gcc-43ff5c7a2dd5912a3bf90bd0f9cc599ac3a3acce.tar.bz2 |
libgfortran: Use remove(3) instead of unlink(2) when deleting files.
testsuite:
2015-09-04 Janne Blomqvist <jb@gcc.gnu.org>
* gfortran.dg/read_dir.f90: Delete empty directory when closing
rather than calling rmdir, cleanup if open fails.
libgfortran:
2015-09-04 Janne Blomqvist <jb@gcc.gnu.org>
* io/unix.h (delete_file): Remove prototype.
* io/unix.c (delete_file): Remove function.
* io/close.c (st_close): Replace delete_file and unlink with
remove.
* io/open.c (already_open): Replace unlink with remove.
From-SVN: r227472
Diffstat (limited to 'libgfortran/io/unix.h')
-rw-r--r-- | libgfortran/io/unix.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/libgfortran/io/unix.h b/libgfortran/io/unix.h index 78a41f7..d1aa75d 100644 --- a/libgfortran/io/unix.h +++ b/libgfortran/io/unix.h @@ -141,9 +141,6 @@ internal_proto(compare_file_filename); extern gfc_unit *find_file (const char *file, gfc_charlen_type file_len); internal_proto(find_file); -extern int delete_file (gfc_unit *); -internal_proto(delete_file); - extern int file_exists (const char *file, gfc_charlen_type file_len); internal_proto(file_exists); |