Skip to content

Instantly share code, notes, and snippets.

@sangfansh
Last active July 11, 2018 19:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sangfansh/cfb8878e43f64c9d458162907c8424e1 to your computer and use it in GitHub Desktop.
Save sangfansh/cfb8878e43f64c9d458162907c8424e1 to your computer and use it in GitHub Desktop.
#ifndef _ENCLAVE_H_
#define _ENCLAVE_H_
#include <stdlib.h>
#include <assert.h>
#if defined(__cplusplus)
extern "C" {
#endif
void printf(const char *fmt, ...);
void printf_helloworld();
#if defined(__cplusplus)
}
#endif
#endif /* !_ENCLAVE_H_ */
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment