1
0
mirror of https://github.com/GOSTSec/sgminer synced 2025-01-27 15:04:17 +00:00

Curses needs to be included before stdbool to compile properly with pdcurses on mingw32.

This commit is contained in:
Con Kolivas 2012-02-06 18:41:15 +11:00
parent aa8552a146
commit 04b6ec948f

View File

@ -12,6 +12,7 @@
#include "config.h"
#include <curses.h>
#include <string.h>
#include <stdbool.h>
#include <stdint.h>
@ -31,7 +32,6 @@
#include "adl.h"
/* TODO: cleanup externals ********************/
#include <curses.h>
extern WINDOW *mainwin, *statuswin, *logwin;
extern void enable_curses(void);