Inverted Index: Indexing

This commit is contained in:
x
2023-08-14 12:00:22 +02:00
parent 009bad8255
commit c0e876cfb3

View File

@ -31,11 +31,15 @@
#include <limits.h>
#include <getopt.h>
#include <sys/stat.h>
#ifdef __APPLE__
#ifdef __APPLE__
#ifdef HAVE_MALLOC_MALLOC
#include <sys/malloc.h>
#else
#else
#include <malloc/malloc.h>
#endif
#else
#include <malloc.h>
#endif
#endif
#include "include_/conf.h"
#include "include_/vint.h"