utils.hpp 276 B

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