diff options
author | Janne Blomqvist <jb@gcc.gnu.org> | 2010-05-07 18:55:59 +0300 |
---|---|---|
committer | Janne Blomqvist <jb@gcc.gnu.org> | 2010-05-07 18:55:59 +0300 |
commit | bb408e876c536829cc57439df8e4a28c43e68456 (patch) | |
tree | bbdaaba9870daa7c26073e634bce50437a73cd07 /libgfortran/io/open.c | |
parent | 5cd0e96b0e8248436fa6f743feb057114abd2f62 (diff) | |
download | gcc-bb408e876c536829cc57439df8e4a28c43e68456.zip gcc-bb408e876c536829cc57439df8e4a28c43e68456.tar.gz gcc-bb408e876c536829cc57439df8e4a28c43e68456.tar.bz2 |
Remove free_mem
From-SVN: r159160
Diffstat (limited to 'libgfortran/io/open.c')
-rw-r--r-- | libgfortran/io/open.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libgfortran/io/open.c b/libgfortran/io/open.c index bca2106..be8f4bb 100644 --- a/libgfortran/io/open.c +++ b/libgfortran/io/open.c @@ -1,9 +1,9 @@ -/* Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009 +/* Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. Contributed by Andy Vaught F2003 I/O support contributed by Jerry DeLisle -This file is part of the GNU Fortran 95 runtime library (libgfortran). +This file is part of the GNU Fortran runtime library (libgfortran). Libgfortran is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -30,6 +30,7 @@ see the files COPYING3 and COPYING.RUNTIME respectively. If not, see #include <unistd.h> #include <string.h> #include <errno.h> +#include <stdlib.h> static const st_option access_opt[] = { @@ -623,7 +624,7 @@ new_unit (st_parameter_open *opp, gfc_unit *u, unit_flags * flags) test_endfile (u); if (flags->status == STATUS_SCRATCH && opp->file != NULL) - free_mem (opp->file); + free (opp->file); if (flags->form == FORM_FORMATTED) { @@ -644,7 +645,7 @@ new_unit (st_parameter_open *opp, gfc_unit *u, unit_flags * flags) /* Free memory associated with a temporary filename. */ if (flags->status == STATUS_SCRATCH && opp->file != NULL) - free_mem (opp->file); + free (opp->file); fail: @@ -689,7 +690,7 @@ already_open (st_parameter_open *opp, gfc_unit * u, unit_flags * flags) u->s = NULL; if (u->file) - free_mem (u->file); + free (u->file); u->file = NULL; u->file_len = 0; |