mirror of
https://github.com/MariaDB/server.git
synced 2025-01-22 23:04:20 +01:00
0ed47ea357
git-svn-id: file:///svn/tokudb.1131b+1080a+1185@6439 c7de825b-a66e-492c-adef-691d508d4ae1
43 lines
812 B
C
43 lines
812 B
C
#ifndef SYSINCLUDES_H
|
|
#define SYSINCLUDES_H
|
|
|
|
#ifndef _XOPEN_SOURCE
|
|
#define _XOPEN_SOURCE 500
|
|
#endif
|
|
#define _FILE_OFFSET_BITS 64
|
|
|
|
#include <arpa/inet.h>
|
|
#include <ctype.h>
|
|
#include <errno.h>
|
|
#include <inttypes.h>
|
|
#include <malloc.h>
|
|
#include <pthread.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/file.h>
|
|
#include <sys/time.h>
|
|
#include <unistd.h>
|
|
#include <zlib.h>
|
|
|
|
#include "block_allocator.h"
|
|
#include "brt.h"
|
|
#include "brt-internal.h"
|
|
#include "cachetable.h"
|
|
#include "cachetable-rwlock.h"
|
|
#include "fifo.h"
|
|
#include "list.h"
|
|
#include "key.h"
|
|
#include "kv-pair.h"
|
|
#include "leafentry.h"
|
|
#include "log-internal.h"
|
|
#include "log_header.h"
|
|
#include "mempool.h"
|
|
#include "rbuf.h"
|
|
#include "threadpool.h"
|
|
#include "toku_assert.h"
|
|
#include "wbuf.h"
|
|
|
|
#include "../include/db.h"
|
|
|
|
#endif
|