adding missing files

SVN revision: 36652
This commit is contained in:
Vincent Torri 2008-10-14 07:58:57 +00:00
parent d8fda87e83
commit ffa00324c4
2 changed files with 26 additions and 0 deletions

View File

@ -0,0 +1,18 @@
#ifndef __EVIL_SUITE_H__
#define __EVIL_SUITE_H__
typedef struct test test;
typedef struct list list;
typedef struct suite suite;
LARGE_INTEGER freq;
LARGE_INTEGER start;
LARGE_INTEGER end;
void suite_time_start();
void suite_time_stop();
double suite_time_get();
#endif /* __EVIL_SUITE_H__ */

View File

@ -0,0 +1,8 @@
#ifndef __EVIL_TEST_MEMCPY__
#define __EVIL_TEST_MEMCPY__
void test_memcpy(void);
#endif /* __EVIL_TEST_MEMCPY__ */