Fix C binding names on paths

This commit is contained in:
Paul Romano 2018-08-24 12:58:21 -05:00
parent d1cc9fd9c6
commit 93f36b574d

View file

@ -17,10 +17,10 @@ module initialize
implicit none
type(C_PTR), bind(C) :: openmc_path_input
type(C_PTR), bind(C) :: openmc_path_statepoint
type(C_PTR), bind(C) :: openmc_path_sourcepoint
type(C_PTR), bind(C) :: openmc_path_particle_restart
type(C_PTR), bind(C, name='path_input') :: openmc_path_input
type(C_PTR), bind(C, name='path_statepoint') :: openmc_path_statepoint
type(C_PTR), bind(C, name='path_sourcepoint') :: openmc_path_sourcepoint
type(C_PTR), bind(C, name='path_particle_restart') :: openmc_path_particle_restart
contains