blob: e94d75083b8ffd7bdf72fed6d9f814bb90c0ad0f [file] [log] [blame] [edit]
#include <stdint.h>
uint32_t foo();
uint32_t bar();
uint32_t add() {
return foo() + bar();
}