build: check if a simple C program runs
[idra/samba.git] / lib / replace / test / simple.c
1 /* simple program to make sure the compiler is OK */
2 #include <stdio.h>
3
4 int main(void)
5 {
6         printf("Hello world\n");
7         return 0;
8 }