utils.hpp 257 B

1234567891011
  1. #ifndef __UTILS_HPP__
  2. #define __UTILS_HPP__
  3. #include "Enclave_t.h"
  4. void printf(const char *fmt, ...);
  5. unsigned long printf_with_rtclock(const char *fmt, ...);
  6. unsigned long printf_with_rtclock_diff(unsigned long before,
  7. const char *fmt, ...);
  8. #endif