Skip to content

Commit

Permalink
Declare a couple of things 'extern', fixes #4416
Browse files Browse the repository at this point in the history
  • Loading branch information
NickMcConnell committed May 21, 2020
1 parent 42b701f commit 8702eba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mon-blows.h
Expand Up @@ -41,7 +41,7 @@ struct blow_method {
struct blow_method *next;
};

struct blow_method *blow_methods;
extern struct blow_method *blow_methods;

/**
* Storage for context information for effect handlers called in
Expand Down Expand Up @@ -83,7 +83,7 @@ struct blow_effect {
struct blow_effect *next;
};

struct blow_effect *blow_effects;
extern struct blow_effect *blow_effects;

/* Functions */
int blow_index(const char *name);
Expand Down

0 comments on commit 8702eba

Please sign in to comment.