blob: 6909925086c86d40934c73e6d7a4b3886d5037c1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#ifndef INCLUDE_errors_h__
#define INCLUDE_errors_h__
#include "git/errors.h"
#include <stdlib.h>
/* convenience functions */
static inline int git_int_error(int code)
{
git_errno = code;
return code;
}
static inline void *git_ptr_error(int code)
{
git_errno = code;
return NULL;
}
#endif
|