Skip to content
Snippets Groups Projects
Commit 64183d52 authored by Soeren Peters's avatar Soeren Peters
Browse files

Added missing header for usleep for apple systems:...

Added missing header for usleep for apple systems: https://developer.apple.com/library/archive/documentation/System/Conceptual/ManPages_iPhoneOS/man3/usleep.3.html
parent 85b92ecd
No related branches found
No related tags found
No related merge requests found
......@@ -25,6 +25,7 @@
#include "sys/stat.h"
#include <sys/syscall.h>
#include <sys/stat.h>
// #include <unistd.h>
#elif (defined(__amd64) || defined(__amd64__) || defined(__unix__) || defined(__CYGWIN__)) && !defined(__AIX__)
#define UBSYSTEM_LINUX
#include "dirent.h"
......@@ -516,7 +517,7 @@ namespace UbSystem
//Anwendung z.B. zur Ueberpruefung von Funktionalitaeten, wie z.B. bei UbMath::getNegativeInfinity<double>();
//
//Grund fuer macro ist einfach, dass es besser anzuwenden ist in der praxis!
//ansonsten wrde es so aussehen:
//ansonsten wuerde es so aussehen:
// UbSystem::ub_static_assert< aaa == 1 > test();
// da ist UB_STATIC_ASSERT(aaa == 1); schoener
//
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment