Skip to content
Snippets Groups Projects
Commit 8dbf0a5b authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

Added void

parent 34bec0e7
No related branches found
No related tags found
1 merge request!141Added void
Pipeline #98880 passed
......@@ -1450,8 +1450,8 @@ extern int (*proj_stere_to_lonlat_func)(struct CDI_GridProjParams gpp, double, d
// Used on CDO remap_scrip_io.cc
void cdf_def_var_filter(int ncid, int ncvarID, const char *filterSpec);
int cdi_has_dap();
int cdi_has_cgribex();
int cdi_has_dap(void);
int cdi_has_cgribex(void);
#ifdef __cplusplus
}
......
......@@ -591,7 +591,7 @@ stream_def_accesstype(stream_t *s, int type)
}
int
cdi_has_dap()
cdi_has_dap(void)
{
#ifdef HAVE_LIBNC_DAP
return 1;
......@@ -600,7 +600,7 @@ cdi_has_dap()
}
int
cdi_has_cgribex()
cdi_has_cgribex(void)
{
#ifdef HAVE_LIBCGRIBEX
return 1;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment