changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > core / lisp/ffi/tree-sitter/alien.c

revision 696: 38e9c3be2392
parent 526: dda17d7dba4f
child 697: 08621be7e780
     1.1--- a/lisp/ffi/tree-sitter/alien.c	Fri Oct 04 16:14:44 2024 -0400
     1.2+++ b/lisp/ffi/tree-sitter/alien.c	Fri Oct 04 21:11:52 2024 -0400
     1.3@@ -9,13 +9,13 @@
     1.4 
     1.5 // build with:
     1.6 /*
     1.7-  sudo cc -g -O2 -Wall -Wno-unused-value -ltree-sitter -shared alien.c -o /usr/local/lib/libtree-sitter-alien.so
     1.8+  cc -g -O2 -Wall -Wno-unused-value -ltree-sitter -shared alien.c -o /usr/local/lib/libtree-sitter-alien.so
     1.9 */
    1.10 
    1.11 /// Code:
    1.12 #include <stdlib.h>
    1.13 
    1.14-#include "ts-api.h"
    1.15+#include "alien.h"
    1.16 
    1.17 TSNode *ts_tree_root_node_pointer(const TSTree *self) {
    1.18     TSNode *node = malloc(sizeof(TSNode));