Hash :
502acd16
Author :
Date :
2009-03-23T18:37:51
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 47 48
#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 <direct.h>
# include <windows.h>
#define snprintf _snprintf
typedef int ssize_t;
#else
# include <unistd.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__ */