solana/programs/bpf/c/src/bpf_to_bpf/helper.c

12 lines
191 B
C

/**
* @brief Example C-based BPF program that prints out the parameters
* passed to it
*/
#include <solana_sdk.h>
#include "helper.h"
void helper_function(void) {
sol_log(__FILE__);
}