Skip to content

Commit

Permalink
Fix windows compile for keys.h
Browse files Browse the repository at this point in the history
  • Loading branch information
pjbroad committed Sep 30, 2017
1 parent 688768e commit af8996c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion keys.c
Expand Up @@ -483,7 +483,7 @@ static void parse_key_line(const char *line)
}

// load the dynamic definitions for keys
void read_key_config()
void read_key_config(void)
{
char line[512];
el_file_ptr f;
Expand Down
3 changes: 2 additions & 1 deletion keys.h
Expand Up @@ -6,6 +6,7 @@
#ifndef __KEYS_H__
#define __KEYS_H__

#include <stddef.h>
#include <SDL_types.h>

#ifdef __cplusplus
Expand Down Expand Up @@ -134,7 +135,7 @@ extern Uint32 K_SPELL12;
*
* \callgraph
*/
void read_key_config();
void read_key_config(void);


/*!
Expand Down

0 comments on commit af8996c

Please sign in to comment.