aboutsummaryrefslogtreecommitdiff
path: root/src/errno.cpp
blob: 4f3119b3dffba201df4ff7ae47ffdfc7291a77f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* For full ANSI compliance of global variable */

#include "proj.h"
#include "proj_internal.h"

int pj_errno = 0;

/************************************************************************/
/*                          pj_get_errno_ref()                          */
/************************************************************************/

int *pj_get_errno_ref()

{
    return &pj_errno;
}

/* end */