mirror of
https://github.com/bkaradzic/bx.git
synced 2026-02-17 20:52:37 +01:00
17 lines
310 B
C
17 lines
310 B
C
/*
|
|
* Copyright 2010-2013 Branimir Karadzic. All rights reserved.
|
|
* License: http://www.opensource.org/licenses/BSD-2-Clause
|
|
*/
|
|
|
|
#ifndef __TEST_H__
|
|
#define __TEST_H__
|
|
|
|
#include <bx/bx.h>
|
|
#include <UnitTest++.h>
|
|
|
|
#if !BX_COMPILER_MSVC
|
|
# define _strdup strdup
|
|
#endif // !BX_COMPILER_MSVC
|
|
|
|
#endif // __TEST_H__
|