summaryrefslogtreecommitdiffstats
path: root/testsuites/support/include/test_support.h
blob: ba0acb01787ae220147f9f64374f67adf88579af (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*
 *  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