mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2025-01-02 19:29:21 +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;
|
|
}
|