Unverified Commit fa10dc1e authored by guraga's avatar guraga Committed by GitHub
Browse files

Update "src/signals.h"

Use "extern volatile" instead of "volatile extern" to avoid "gcc" warning "'extern' is not at beginning of declaration [-Wold-style-declaration]".
parent ad6b72d3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,5 +27,5 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#define SIGNALS_H

void setup_signal_handlers();
volatile extern int sig_exit;
extern volatile int sig_exit;
#endif