ref: 64fae11fbc7b6207a83d57d3455cdc98c5218f6a dir: /include/thread.h/
typedef struct Ref Ref; struct Ref { long ref; }; static void incref(Ref *r) { r->ref++; } static long decref(Ref *r) { return --(r->ref); }