Rogier 2f4a917bb1 Add a function to obtain relative millisecond-timestamps
'Relative' in the sense that they can only sensibly compared to
another time value obtained using the same function during the
same program invocation.
2016-08-03 11:31:38 +02:00

18 lines
209 B
C

#ifndef _PORTING_H
#define _PORTING_H
#ifdef _WIN32
#include "porting_win32.h"
#else
#include "porting_posix.h"
#endif
#ifdef _MSC_VER
#define strcasecmp(a, b) _stricmp(a, b)
#endif
#endif // _PORTING_H