* intrinsics/access.c (access_func): Remove export directive.
authorFrancois-Xavier Coudert <coudert@clipper.ens.fr>
Sat, 5 Aug 2006 13:37:52 +0000 (15:37 +0200)
committerFrançois-Xavier Coudert <fxcoudert@gcc.gnu.org>
Sat, 5 Aug 2006 13:37:52 +0000 (13:37 +0000)
From-SVN: r115949

libgfortran/ChangeLog
libgfortran/intrinsics/access.c

index 2a19aea7c1cf6d5f0ca0a3e13e9de5b9844a13ef..00e57878a2cb85304596d8b241a28d8a57d3a168 100644 (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.
index b0af0475f6260fdd265bbfe62050e651b0a10fc5..08008bfb728d71407e8a976409b0fe793527327d 100644 (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