Hash :
840fb8b7
Author :
Date :
2009-02-18T18:53:48
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
#ifndef INCLUDE_common_h__
#define INCLUDE_common_h__
#if defined(_WIN32) && !defined(__CYGWIN__) && !defined(__MINGW32__)
#define GIT_WIN32 1
#endif
#include "git/thread-utils.h"
#ifdef GIT_HAS_PTHREAD
# include <pthread.h>
#endif
#include <inttypes.h>
#include <assert.h>
#include <errno.h>
#include <limits.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#ifdef GIT_WIN32
# include <io.h>
# include <winsock2.h>
typedef int ssize_t;
#else
# include <unistd.h>
# include <sys/mman.h>
# include <arpa/inet.h>
#endif
#include "cc-compat.h"
#include "git/common.h"
#include "util.h"
#include "thread-utils.h"
#include "errors.h"
#define GIT_PATH_MAX 4096
#endif /* INCLUDE_common_h__ */