24 lines
616 B
C
24 lines
616 B
C
/*
|
|
problems.h for intel/linux
|
|
|
|
Part of the DEBIE-1 benchmark.
|
|
|
|
$Id: problems.h,v 1.1 2008/03/28 08:22:17 niklas Exp $
|
|
*/
|
|
|
|
|
|
#ifndef PROBLEMS_H
|
|
#define PROBLEMS_H
|
|
|
|
#define FOR_PROBLEM(P)
|
|
/* A marker to indicate that the program is about to execute */
|
|
/* a test case that is to be included in the analysis problem */
|
|
/* identified by P. */
|
|
|
|
#define END_PROBLEM
|
|
/* A marked to indicate the end of a test case that is to be */
|
|
/* included in the analysis problem identified by the last */
|
|
/* executed FOR_PROBLEM. */
|
|
|
|
#endif
|