* intrinsics/access.c (access_func): Remove export directive.

From-SVN: r115949
This commit is contained in:
Francois-Xavier Coudert 2006-08-05 15:37:52 +02:00 committed by François-Xavier Coudert
parent 15ecde8ebf
commit fd517dc661
2 changed files with 4 additions and 1 deletions

View File

@ -1,3 +1,7 @@
2006-08-05 Francois-Xavier Coudert <coudert@clipper.ens.fr>
* intrinsics/access.c (access_func): Remove export directive.
2006-08-02 Thomas Koenig <Thomas.Koenig@online.de>
* Makefile.in: Regenerate using automake 1.9.6.

View File

@ -95,5 +95,4 @@ access_func (char *name, char *mode, gfc_charlen_type name_len,
/* And make the call to access(). */
return (access (file, m) == 0 ? 0 : errno);
}
export(access_func);
#endif