(svn r3308) BAD

foo.h: int bar;

GOOD
foo.h: extern int bar;
foo.c: int bar;
This commit is contained in:
tron
2005-12-15 17:55:59 +00:00
parent ca52ec33b2
commit 28fe368b7f
4 changed files with 15 additions and 6 deletions

View File

@@ -20,6 +20,6 @@ typedef struct Bridge {
} Bridge;
extern const Bridge orig_bridge[MAX_BRIDGES];
Bridge _bridge[MAX_BRIDGES];
extern Bridge _bridge[MAX_BRIDGES];
#endif /* BRIDGE_H */