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:
Thomas Goyne 2012-05-26 17:00:16 +00:00
parent 427c8406d5
commit dc5d6c9a4a
1 changed files with 7 additions and 3 deletions

View File

@ -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"