mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-11-17 20:06:49 +00:00
12 lines
181 B
C++
12 lines
181 B
C++
/* Conformance Test 23.6.0.1: Make sure the lint pragma is alive */
|
|
|
|
#pragma lint -1
|
|
|
|
#include <stdio.h>
|
|
|
|
int main (void)
|
|
|
|
{
|
|
printf ("Passed Conformance Test 23.6.0.1\n");
|
|
}
|