mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-12-22 07:30:54 +00:00
1 line
546 B
C++
Executable File
1 line
546 B
C++
Executable File
/* */
|
|
/* Special Conformance Test 21.2.0.1: Verification of system function */
|
|
/* */
|
|
/* The tester should verify that the shell's CATALOG command is executed */
|
|
/* and that status is zero if the command worked. */
|
|
/* */
|
|
|
|
#include <stdlib.h>
|
|
|
|
main ()
|
|
{
|
|
int i;
|
|
i = system ("catalog\r");
|
|
exit (i);
|
|
}
|