summaryrefslogtreecommitdiff
path: root/source/luametatex/source/mp/mpc/mpconfig.h
blob: 509e6c5260e4eefeb1d91b39529e23d901504073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# ifndef MPCONFIG_H
# define MPCONFIG_H

# include <errno.h>
# include <string.h>
# include <float.h>
# include <math.h>
# include <stdlib.h>
# include <stdarg.h>
# include <ctype.h>
# include <sys/stat.h>
# include <time.h>

# ifdef _WIN32

    # include <stdio.h>
    # include <fcntl.h>
    # include <io.h>

# else

    # include <unistd.h>

# endif

# endif