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

extern void test(void);

int main(void) {
   test();
   return EXIT_SUCCESS;
}
