1#include "app.h" 2#include <stdio.h> 3#include <math.h> 4 5 6EXPORTED_SYMBOL 7void hello(void) { 8 // use a function from libc 9 printf("hello using libc: %f\n", sin(1)); 10} 11 12