11 lines
173 B
C
11 lines
173 B
C
#include <glib.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
printf("Write some tests!!! Failing!\n");
|
|
exit(EXIT_FAILURE);
|
|
return 0;
|
|
}
|