Enclave1.h 246 B

1234567891011121314151617
  1. #ifndef _$(ENCLAVENAME)_H_
  2. #define _$(ENCLAVENAME)_H_
  3. #include <stdlib.h>
  4. #include <assert.h>
  5. #if defined(__cplusplus)
  6. extern "C" {
  7. #endif
  8. void printf(const char *fmt, ...);
  9. #if defined(__cplusplus)
  10. }
  11. #endif
  12. #endif /* !_$(ENCLAVENAME)_H_ */