small update
[mTask.git] / client / interpret.h
index d2effe7..bb93bec 100644 (file)
@@ -1,7 +1,9 @@
 #ifndef INTEPRET_H
 #define INTEPRET_H
 
-#define STACKSIZE 1024
+#ifdef __cplusplus
+extern "C" {
+#endif
 
 #include <stdint.h>
 #include <stdbool.h>
@@ -10,4 +12,7 @@
 
 void run_task(struct task *task);
 
+#ifdef __cplusplus
+}
+#endif
 #endif