mirror of
https://git.proxmox.com/git/libgit2
synced 2025-05-10 00:15:45 +00:00

GCC produces several -Wuninitialized warnings. Most of them can be fixed if we make visible for gcc that git__throw() and git__rethrow() always return first argument. Signed-off-by: Kirill A. Shutemov <kirill@shutemov.name>
60 lines
1.1 KiB
C
60 lines
1.1 KiB
C
#ifndef INCLUDE_common_h__
|
|
#define INCLUDE_common_h__
|
|
|
|
#include "git2/common.h"
|
|
#include "git2/thread-utils.h"
|
|
#include "cc-compat.h"
|
|
|
|
#ifdef GIT_HAVE_INTTYPES_H
|
|
# include <inttypes.h>
|
|
#endif
|
|
#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>
|
|
|
|
#ifdef GIT_WIN32
|
|
|
|
# include <io.h>
|
|
# include <direct.h>
|
|
# include <windows.h>
|
|
# include "win32/msvc-compat.h"
|
|
# include "win32/mingw-compat.h"
|
|
# ifdef GIT_THREADS
|
|
# include "win32/pthread.h"
|
|
#endif
|
|
|
|
# define snprintf _snprintf
|
|
|
|
typedef SSIZE_T ssize_t;
|
|
|
|
#else
|
|
# include <unistd.h>
|
|
|
|
# ifdef GIT_THREADS
|
|
# include <pthread.h>
|
|
# endif
|
|
#endif
|
|
|
|
#include "git2/types.h"
|
|
#include "git2/errors.h"
|
|
#include "thread-utils.h"
|
|
#include "bswap.h"
|
|
|
|
extern void git___throw(const char *, ...) GIT_FORMAT_PRINTF(1, 2);
|
|
#define git__throw(error, ...) \
|
|
(git___throw(__VA_ARGS__), error)
|
|
|
|
extern void git___rethrow(const char *, ...) GIT_FORMAT_PRINTF(1, 2);
|
|
#define git__rethrow(error, ...) \
|
|
(git___rethrow(__VA_ARGS__), error)
|
|
|
|
#include "util.h"
|
|
|
|
#endif /* INCLUDE_common_h__ */
|