Skip to content
Snippets Groups Projects
Commit 36faca33 authored by deuce's avatar deuce
Browse files

syncterm.c was getting stdbool from cterm.h

parent 7906651e
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,12 @@ static const KNOWNFOLDERID FOLDERID_ProgramData = {0x62AB5D82,0xFDC1,0x4DC3,{0x
#include <filewrap.h> // STDOUT_FILENO
#include <cterm.h>
#if !(defined __BORLANDC__ || defined _MSC_VER)
#include <stdbool.h>
#else
#define bool int
enum { false, true };
#endif
#include "st_crypt.h"
#include "fonts.h"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment