added std/errno.hpp according to suggestion in code review.

This commit is contained in:
rachytski 2013-01-09 19:19:28 +03:00 committed by Alex Zolotarev
parent dffeb8b659
commit d3cf52153c
2 changed files with 20 additions and 2 deletions

View file

@ -7,8 +7,7 @@
#include "../std/stdint.hpp"
#include "../std/systime.hpp"
#include <sys/errno.h>
#include "../std/errno.hpp"
#include <pthread.h>

19
std/errno.hpp Normal file
View file

@ -0,0 +1,19 @@
#pragma once
#include "common_defines.hpp"
#include "target_os.hpp"
#ifdef new
#undef new
#endif
// for errno
#ifdef OMIM_OS_WINDOWS
#include <errno.h>
#else
#include <sys/errno.h>
#endif
#ifdef DEBUG_NEW
#define new DEBUG_NEW
#endif