11 lines
204 B
C
11 lines
204 B
C
/**
|
|
* @brief Example C-based BPF program that prints out the parameters
|
|
* passed to it
|
|
*/
|
|
#include <solana_sdk.h>
|
|
|
|
extern uint64_t entrypoint(const uint8_t *input) {
|
|
sol_panic();
|
|
return SUCCESS;
|
|
}
|