File: fixedform.f90

package info (click to toggle)
pnetcdf 1.14.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 13,812 kB
  • sloc: ansic: 85,298; f90: 10,707; fortran: 9,283; cpp: 8,864; makefile: 3,084; perl: 2,833; sh: 2,538; yacc: 1,227; lex: 216
file content (27 lines) | stat: -rw-r--r-- 562 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
!
!   Copyright (C) 2013, Northwestern University and Argonne National Laboratory
!   See COPYRIGHT notice in top-level directory.
!
! $Id$

!
! This program tests whether header file pnetcdf.inc conforms Fortran fixed
! form. Hence this test is for compilation only.
!

      program main
        implicit none
        include "mpif.h"
        include "pnetcdf.inc"

        character(LEN=80) pnetcdf_version
        integer err

        call MPI_Init(err)

        pnetcdf_version = nfmpi_inq_libvers()

        call MPI_Finalize(err)

      end program main