mirror of
https://github.com/mdbtools/mdbtools.git
synced 2026-01-02 20:42:14 +08:00
Enable strict prototypes warnings, and fix warnings
If a host project has -Wstrict-prototypes enabled, the mdbtools header results in warnings. Turn on -Wstrict-prototypes for the whole project so that these never occur again.
This commit is contained in:
@@ -35,7 +35,7 @@
|
||||
|
||||
static int is_init;
|
||||
GHashTable *mdb_backends;
|
||||
void _mdb_remove_backends();
|
||||
void _mdb_remove_backends(void);
|
||||
|
||||
/* Access data types */
|
||||
static MdbBackendType mdb_access_types[] = {
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
static unsigned long opts;
|
||||
static int optset;
|
||||
|
||||
static void load_options();
|
||||
static void load_options(void);
|
||||
|
||||
void
|
||||
mdb_debug(int klass, char *fmt, ...)
|
||||
|
||||
Reference in New Issue
Block a user