forked from Imagelibrary/rtems
23 lines
303 B
C
23 lines
303 B
C
/*
|
|
* Support routines for test code.
|
|
*
|
|
* $Id$
|
|
*/
|
|
|
|
#ifndef __TEST_SUPPORT_h
|
|
#define __TEST_SUPPORT_h
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
void Allocate_majority_of_workspace( int smallest );
|
|
const char *Get_Too_Long_Name();
|
|
const char *Get_Longest_Name();
|
|
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif
|
|
|
|
#endif
|