aboutsummaryrefslogtreecommitdiff
path: root/src/pj_errno.c
blob: 002a5c0661a50239532970f4ccc33400cfc13658 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/* For full ANSI compliance of global variable */
#ifndef lint
static const char SCCSID[]="@(#)pj_errno.c	4.3	95/06/03	GIE	REL";
#endif

#include <projects.h>

C_NAMESPACE int pj_errno = 0;

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

int *pj_get_errno_ref()

{
    return &pj_errno;
}

/* end */