malloctag.c - 9base - revived minimalist port of Plan 9 userland to Unix
 (HTM) git clone git://git.suckless.org/9base
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
 (DIR) LICENSE
       ---
       malloctag.c (141B)
       ---
            1 #include <lib9.h>
            2 
            3 void
            4 setmalloctag(void *v, ulong t)
            5 {
            6         USED(v);
            7         USED(t);
            8 }
            9 
           10 void
           11 setrealloctag(void *v, ulong t)
           12 {
           13         USED(v);
           14         USED(t);
           15 }