mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-19 03:07:00 +00:00
14 lines
233 B
C++
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;
|
|
}
|