diff --git a/configure.ac b/configure.ac index c76f823db..d8a1e68c7 100644 --- a/configure.ac +++ b/configure.ac @@ -68,7 +68,6 @@ AC_CONFIG_HEADERS([config.h]) AC_CONFIG_LINKS([nc_test4/ref_hdf5_compat1.nc:nc_test4/ref_hdf5_compat1.nc]) AC_CONFIG_LINKS([nc_test4/ref_hdf5_compat2.nc:nc_test4/ref_hdf5_compat2.nc]) AC_CONFIG_LINKS([nc_test4/ref_hdf5_compat3.nc:nc_test4/ref_hdf5_compat3.nc]) -AC_CONFIG_LINKS([nc_test4/ref_hdf5_enum.nc:nc_test4/ref_hdf5_enum.nc]) AC_CONFIG_LINKS([hdf4_test/ref_chunked.hdf4:hdf4_test/ref_chunked.hdf4]) AC_CONFIG_LINKS([hdf4_test/ref_contiguous.hdf4:hdf4_test/ref_contiguous.hdf4]) diff --git a/libsrc4/nc4dispatch.c b/libsrc4/nc4dispatch.c index beb168a9f..00b33d21b 100644 --- a/libsrc4/nc4dispatch.c +++ b/libsrc4/nc4dispatch.c @@ -37,8 +37,8 @@ NC4_sync, NC4_abort, NC4_close, NC4_set_fill, -NC4_inq_base_pe, -NC4_set_base_pe, +NC_NOTNC3_inq_base_pe, +NC_NOTNC3_set_base_pe, NC4_inq_format, NC4_inq_format_extended, diff --git a/libsrc4/ncfunc.c b/libsrc4/ncfunc.c index 361ea9ba5..c44396316 100644 --- a/libsrc4/ncfunc.c +++ b/libsrc4/ncfunc.c @@ -17,37 +17,6 @@ #include "nc4internal.h" #include "nc4dispatch.h" -/** - * @internal This function only does anything for netcdf-3 files. - * - * @param ncid File ID (ignored). - * @param pe Processor element (ignored). - * - * @return ::NC_ENOTNC3 Not a netCDF classic format file. - * @author Ed Hartnett - */ -int -NC4_set_base_pe(int ncid, int pe) -{ - return NC_ENOTNC3; -} - -/** - * @internal This function only does anything for netcdf-3 files. - * - * @param ncid File ID (ignored). - * @param pe Pointer to processor element. Ignored if NULL. Gets a 0 - * if present. - * - * @return ::NC_ENOTNC3 Not a netCDF classic format file. - * @author Ed Hartnett - */ -int -NC4_inq_base_pe(int ncid, int *pe) -{ - return NC_ENOTNC3; -} - /** * @internal Get the format (i.e. NC_FORMAT_NETCDF4 pr * NC_FORMAT_NETCDF4_CLASSIC) of an open netCDF-4 file.