mirror of
https://github.com/nwchemgit/nwchem.git
synced 2026-07-29 06:35:39 -04:00
ACCESS='append' is not standard and fails on IBM XL compilers.
POSITION='append' is standard syntax. See: http://software.intel.com/en-us/forums/intel-fortran-compiler-for-linux-and-mac-os-x/topic/58685/
This commit is contained in:
parent
969501c72e
commit
69ff770671
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ c
|
|||
open(unit=10,file='traj.xyz',status='new')
|
||||
open(unit=11,file='restart.pun',status='new')
|
||||
else
|
||||
open(unit=10,file='traj.xyz',status='old',ACCESS='append')
|
||||
open(unit=10,file='traj.xyz',status='old',POSITION='append')
|
||||
open(unit=11,file='restart.pun',status='old')
|
||||
endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue