mirror of
https://github.com/cp2k/cp2k.git
synced 2026-07-29 06:35:28 -04:00
grid: Avoid name collision of C-bound procedures
This commit is contained in:
parent
903cfe99f3
commit
2052087cfa
1 changed files with 2 additions and 2 deletions
|
|
@ -1230,7 +1230,7 @@ CONTAINS
|
|||
!> \param mpi_comm ...
|
||||
!> \author Ole Schuett
|
||||
! **************************************************************************************************
|
||||
SUBROUTINE mpi_sum_func(number, mpi_comm) BIND(C)
|
||||
SUBROUTINE mpi_sum_func(number, mpi_comm) BIND(C, name="grid_api_mpi_sum_func")
|
||||
INTEGER(KIND=C_LONG), INTENT(INOUT) :: number
|
||||
INTEGER(KIND=C_INT), INTENT(IN), VALUE :: mpi_comm
|
||||
|
||||
|
|
@ -1243,7 +1243,7 @@ CONTAINS
|
|||
!> \param output_unit ...
|
||||
!> \author Ole Schuett
|
||||
! **************************************************************************************************
|
||||
SUBROUTINE print_func(message, output_unit) BIND(C)
|
||||
SUBROUTINE print_func(message, output_unit) BIND(C, name="grid_api_print_func")
|
||||
CHARACTER(LEN=1, KIND=C_CHAR), INTENT(IN) :: message(*)
|
||||
INTEGER(KIND=C_INT), INTENT(IN), VALUE :: output_unit
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue