Remove volatile keyword from function declarations

This silences a lot of gcc-4 compile warnings
This commit is contained in:
Richard P. Curnow
2006-04-15 00:10:21 +01:00
parent 3e7781fdaf
commit 1e7e7d3231
4 changed files with 4 additions and 4 deletions

2
main.h
View File

@@ -32,7 +32,7 @@
#define GOT_MAIN_H
/* Function to clean up at end of run */
extern volatile void MAI_CleanupAndExit(void);
extern void MAI_CleanupAndExit(void);
#endif /* GOT_MAIN_H */