mirror of
https://git.suckless.org/9base
synced 2025-09-01 21:03:48 -07:00
20 lines
221 B
C
20 lines
221 B
C
#include <lib9.h>
|
|
|
|
extern long p9lrand(void);
|
|
#define USED(x) if(x){}else{}
|
|
#define lrand p9lrand
|
|
|
|
void
|
|
setmalloctag(void *v, ulong t)
|
|
{
|
|
USED(v);
|
|
USED(t);
|
|
}
|
|
|
|
void
|
|
setrealloctag(void *v, ulong t)
|
|
{
|
|
USED(v);
|
|
USED(t);
|
|
}
|