Add stdio header for linux builds
Currently cmake builds on linux fail without those headers. This commit fixes that.
This commit is contained in:
parent
850e355049
commit
cc6e7a13d2
3 changed files with 3 additions and 3 deletions
|
@ -27,7 +27,7 @@
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <sys/resource.h>
|
#include <sys/resource.h>
|
||||||
#include <uv.h>
|
#include <uv.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "Platform.h"
|
#include "Platform.h"
|
||||||
#include "version.h"
|
#include "version.h"
|
||||||
|
|
|
@ -35,7 +35,7 @@
|
||||||
|
|
||||||
#include "log/ConsoleLog.h"
|
#include "log/ConsoleLog.h"
|
||||||
#include "log/Log.h"
|
#include "log/Log.h"
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
ConsoleLog::ConsoleLog(bool colors) :
|
ConsoleLog::ConsoleLog(bool colors) :
|
||||||
m_colors(colors)
|
m_colors(colors)
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <time.h>
|
#include <time.h>
|
||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
#include "log/FileLog.h"
|
#include "log/FileLog.h"
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue