Rename sol_bpf_c.h to sol_bpf.h

This commit is contained in:
Michael Vines 2018-10-29 20:07:48 -07:00
parent 864632b582
commit a013e8ceb1
5 changed files with 7 additions and 7 deletions

View File

@ -1,5 +1,5 @@
#ifndef SOL_BPF_C_H
#define SOL_BPF_C_H
#ifndef SOL_BPF_H
#define SOL_BPF_H
/**
* @brief Solana C-based BPF program utility functions and types
*/
@ -271,4 +271,4 @@ extern bool entrypoint(const uint8_t *input);
/**@}*/
#endif // SOL_BPF_C_H
#endif // SOL_BPF_C

View File

@ -3,7 +3,7 @@
* another
*/
#include <sol_bpf_c.h>
#include <sol_bpf.h>
/**
* Number of SolKeyedAccounts expected. The program should bail if an

View File

@ -3,7 +3,7 @@
* passed to it
*/
#include <sol_bpf_c.h>
#include <sol_bpf.h>
/**
* Number of SolKeyedAccounts expected. The program should bail if an

View File

@ -2,7 +2,7 @@
* @brief TicTacToe Dashboard C-based BPF program
*/
#include <sol_bpf_c.h>
#include <sol_bpf.h>
#include "tictactoe.h"
typedef enum {

View File

@ -2,7 +2,7 @@
* @brief TicTacToe C-based BPF program
*/
#include <sol_bpf_c.h>
#include <sol_bpf.h>
#include "tictactoe.h"
#define MAX_GAMES_TRACKED 5