/Proj4/pj_errno.c

http://github.com/route-me/route-me · C · 20 lines · 9 code · 6 blank · 5 comment · 0 complexity · e5ed4aaf744915c5709e8bb45eaecbdd MD5 · raw file

  1. /* For full ANSI compliance of global variable */
  2. #ifndef lint
  3. static const char SCCSID[]="@(#)pj_errno.c 4.3 95/06/03 GIE REL";
  4. #endif
  5. #include "projects.h"
  6. int pj_errno = 0;
  7. /************************************************************************/
  8. /* pj_get_errno_ref() */
  9. /************************************************************************/
  10. int *pj_get_errno_ref()
  11. {
  12. return &pj_errno;
  13. }
  14. /* end */