mirror of
https://github.com/holub/mame
synced 2025-05-06 22:35:43 +03:00
18 lines
332 B
C
18 lines
332 B
C
/*
|
|
* Copyright 2010-2016 Branimir Karadzic. All rights reserved.
|
|
* License: https://github.com/bkaradzic/bx#license-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__
|