Fix trivial compile issue

Change-Id: I9dbc51496dbdb2195bbe589b0c3b2cd7e3d2f1fc
main
Tadashi G. Takaoka 2011-10-28 16:24:31 +09:00
parent 6f811bd13f
commit 5049f5bbb4
2 changed files with 5 additions and 0 deletions

View File

@ -33,6 +33,7 @@
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#else // USE_MMAP_FOR_DICTIONARY
#include <stdlib.h>
#endif // USE_MMAP_FOR_DICTIONARY

View File

@ -21,6 +21,10 @@
#include "defines.h"
#ifndef NULL
#define NULL 0
#endif
namespace latinime {
class Correction;