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

14 lines
233 B
C++

/* Conformance Test 23.2.0.1: Make sure the rtl pragma works */
#pragma rtl
#include <stdio.h>
int main (void)
{
SYSIOSTARTUP();
printf ("Passed Conformance Test 23.2.0.1\n");
SYSIOSHUTDOWN();
return;
}