/*#* sltest.c */

#include <stdio.h> 
#include <stdlib.h> 

void x1(void);

int
main(int argc, char *argv[])
{
    x1();
    exit(EXIT_SUCCESS);
} /* main */

