mirror of https://github.com/ecmwf/eccodes.git
Compiler warnings re strict prototypes
This commit is contained in:
parent
7878dd9d64
commit
0e0b94426e
|
@ -1292,7 +1292,7 @@ struct grib_math{
|
|||
int arity;
|
||||
};
|
||||
|
||||
typedef double (*mathproc)();
|
||||
typedef double (*mathproc)(void);
|
||||
typedef int (*funcproc)(grib_math*,mathproc);
|
||||
|
||||
typedef struct func {
|
||||
|
|
|
@ -1349,7 +1349,7 @@ int is_productDefinitionTemplateNumber_EPS(long productDefinitionTemplateNumber)
|
|||
int is_productDefinitionTemplateNumber_Chemical(long productDefinitionTemplateNumber);
|
||||
int is_productDefinitionTemplateNumber_Aerosol(long productDefinitionTemplateNumber);
|
||||
int is_index_file(const char *filename);
|
||||
char get_dir_separator_char();
|
||||
char get_dir_separator_char(void);
|
||||
const char* extract_filename(const char* filepath);
|
||||
|
||||
/* compile.c */
|
||||
|
|
Loading…
Reference in New Issue