waf/playground/cython/c_lib/lib.c

9 lines
90 B
C

#include "lib.h"
#include <stdio.h>
void hello(void)
{
printf("Hello, C-world!\n");
}