2
0
mirror of https://github.com/Unidata/netcdf-c.git synced 2025-03-07 17:08:02 +08:00
netcdf-c/test_prog.c
2010-06-03 13:24:43 +00:00

13 lines
268 B
C

/* This is part of Unidata's netCDF package. Copyright 2009.
This is a test program for the nc-config utility. */
#include <netcdf.h>
#include <stdio.h>
int
main()
{
printf("NetCDF version: %s\n", nc_inq_libvers());
printf("*** SUCCESS!\n");
return 0;
}