source: LMDZ6/trunk/tools/netcdf95/nc_constants.f90 @ 4918

Last change on this file since 4918 was 4918, checked in by Laurent Fairhead, 4 weeks ago

Reintegrated NetCDF95 in LMDZ so that it is compiled and made available by the makelmdz_fcm script.
The makelmdz_fcm creates the libnetcdf95 library and copies it in the tools/netcdf/lib directory, copying
the mod files in the tools/netcdf/include library.

File size: 235 bytes
Line 
1module nc_constants
2
3  use, intrinsic:: ISO_C_BINDING, only: c_int
4
5  implicit none
6
7  Integer(C_INT), Parameter:: NC_NOERR = 0
8  Integer(C_INT), Parameter:: NC_ENOGRP = - 125 ! no group found
9
10  private c_int
11
12end module nc_constants
Note: See TracBrowser for help on using the repository browser.