mirror of
https://git.proxmox.com/git/libgit2
synced 2026-03-24 13:52:50 +00:00
20 lines
294 B
C
20 lines
294 B
C
#include "git2.h"
|
|
|
|
#include <assert.h>
|
|
#include <errno.h>
|
|
#include <limits.h>
|
|
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
#include <string.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
|