mirror of
https://github.com/holub/mame
synced 2025-06-02 19:06:43 +03:00
18 lines
327 B
C
18 lines
327 B
C
/*
|
|
* Copyright 2010-2015 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>
|
|
#include "dbg.h"
|
|
|
|
#if !BX_COMPILER_MSVC
|
|
# define _strdup strdup
|
|
#endif // !BX_COMPILER_MSVC
|
|
|
|
#endif // __TEST_H__
|