Skip to content

Commit

Permalink
Remove static keyword
Browse files Browse the repository at this point in the history
  • Loading branch information
tekktrik committed Apr 5, 2023
1 parent ba13fe2 commit 5a20508
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/parallel64/ports/portio.c
Expand Up @@ -20,7 +20,7 @@ rport readport_cached;


#if defined(_WIN32)
static init_result_t portio_load_dll(const char *dllpath) {
init_result_t portio_load_dll(const char *dllpath) {
HINSTANCE dll = LoadLibraryA(dllpath);
if (dll == NULL) {
return INIT_DLLLOAD_ERROR;
Expand Down
2 changes: 1 addition & 1 deletion src/parallel64/ports/portio.h
Expand Up @@ -64,7 +64,7 @@ typedef enum {


#if defined(_WIN32)
static init_result_t portio_load_dll(const char *dllpath);
init_result_t portio_load_dll(const char *dllpath);
uint8_t readport(uint16_t port);
void writeport(uint16_t port, uint8_t value);
#endif
Expand Down

0 comments on commit 5a20508

Please sign in to comment.