ORCA-C/Tests/Conformance/C23.5.0.1.CC
2017-10-21 18:40:19 -05:00

20 lines
355 B
C++

/* Conformance Test 23.5.0.1: Verification of startgraph, endgraph functions */
#include <orca.h>
main ()
{
startgraph (640);
if ( toolerror () )
goto Fail;
endgraph ();
if ( toolerror () )
goto Fail;
printf ("Passed Conformance Test 23.5.0.1\n");
return;
Fail:
printf ("Failed Conformance Test 23.5.0.1\n");
}