/* Test auf Kommandoprozessor */
/* Datei: psystem3.c */
#include <stdio.h>
#include <stdlib.h>

int main ()
{
printf ("\x1b[2JTest der System-Funktion\n\n");
if ((system (NULL)) != 0)
  printf("\nKommandoprozessor steht zur Verfügung\n");
return 0;
}
