mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-21 22:21:37 +00:00
24 lines
371 B
C
24 lines
371 B
C
#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"
|