1
0
Fork 0
hvif-light/src/main.c

14 lines
230 B
C

#include <stdio.h>
#include <stdlib.h>
#include "config.h"
#include "hvif-light.h"
int main(void) {
unsigned x = 12;
unsigned y = test(x);
printf("This is " PACKAGE_STRING " and 2*%u = %u.\n", x, y);
return EXIT_SUCCESS;
}