wolfssl-examples/SGX_Linux/trusted/Wolfssl_Enclave.h

17 lines
287 B
C

#ifndef _BENCHMARK_ENCLAVE_H_
#define _BENCHMARK_ENCLAVE_H_
#if defined(__cplusplus)
extern "C" {
#endif
void printf(const char *fmt, ...);
int sprintf(char* buf, const char *fmt, ...);
double current_time(void);
#if defined(__cplusplus)
}
#endif
#endif /* !_BENCHMARK_ENCLAVE_H_ */