Welcome to mirror list, hosted at ThFree Co, Russian Federation.

precompiled.h « win32 « src - github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 33ce106d3a17a47b9e60f3c585b43ac8aeb0b868 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#include <assert.h>
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <fcntl.h>
#include <time.h>
#include <stdarg.h>

#include <sys/types.h>
#include <sys/stat.h>

#include <regex.h>

#include <io.h>
#include <direct.h>
#ifdef GIT_THREADS
 #include "win32/pthread.h"
#endif

#include "git2.h"
#include "common.h"