shithub: drawterm-fdroid

ref: 7d6b0ad1265ef7e7418cc4adc54fe470259a0e33
dir: /kern/smalloc.c/

View raw version
#include "u.h"
#include "lib.h"
#include "dat.h"
#include "fns.h"
#include "error.h"

void*
smalloc(ulong n)
{
	return mallocz(n, 1);
}

void*
malloc(ulong n)
{
	return mallocz(n, 1);
}