forked from mia/Aegisub
Add missing include in unix/log.cpp and wrap includes in #ifndef LAGI_PRE
Originally committed to SVN as r6876.
This commit is contained in:
parent
427c8406d5
commit
dc5d6c9a4a
1 changed files with 7 additions and 3 deletions
|
@ -20,9 +20,13 @@
|
|||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdio.h>
|
||||
#include <time.h>
|
||||
#include <string.h>
|
||||
#ifndef LAGI_PRE
|
||||
#include <cstdio>
|
||||
#include <ctime>
|
||||
#include <cstring>
|
||||
#endif
|
||||
|
||||
#include <unistd.h>
|
||||
|
||||
#include "libaegisub/log.h"
|
||||
#include "libaegisub/util.h"
|
||||
|
|
Loading…
Reference in a new issue