Add runtime specs

This commit is contained in:
Max Brunsfeld 2013-12-17 13:14:41 -08:00
parent 9618efd12a
commit 3417ad5adb
11 changed files with 542 additions and 294 deletions

9
src/runtime/tree.c Normal file
View file

@ -0,0 +1,9 @@
#include "runtime.h"
TSTree TSTreeMake() {
TSTree result = {
};
return result;
}