| 12345678910111213141516171819202122232425262728293031323334353637 | C StarPU --- Runtime system for heterogeneous multicore architectures.CC Copyright (C) 2010,2014,2015,2017                      CNRSC Copyright (C) 2009,2011,2014                           Université de BordeauxCC StarPU is free software; you can redistribute it and/or modifyC it under the terms of the GNU Lesser General Public License as published byC the Free Software Foundation; either version 2.1 of the License, or (atC your option) any later version.CC StarPU is distributed in the hope that it will be useful, butC WITHOUT ANY WARRANTY; without even the implied warranty ofC MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.CC See the GNU Lesser General Public License in COPYING.LGPL for more details.C#include "StarPU_fortran.h"            SUBROUTINE HELLOSUB(X)          INTEGER :: X          WRITE(*,*) 'X =', X      END SUBROUTINE      PROGRAM HELLO          USE STARPU_FORTRAN          USE ISO_C_BINDING          INTEGER :: TOTO          TOTO = 42          CALL STARPU_SUBMIT_CODELET(PRINT_INT, TOTO)C           CALL STARPU_SUBMIT_CODELET(HELLOSUB, TOTO)C          CALL DUMMY_C_FUNC(TOTO)      END PROGRAM
 |