Fix compilation with PGI compilers.

This commit is contained in:
Grzegorz Kowal 2011-06-10 19:23:02 -03:00
parent d18174a567
commit 970293c024

View File

@ -200,7 +200,11 @@ module config
!
integer :: iargc
#ifdef PGI
external :: iargc, getarg
#else /* PGI */
intrinsic :: iargc, getarg
#endif /* PGI */
!
!-------------------------------------------------------------------------------
!