code: drawterm

ref: 7d633eeb7f1d5bb10dd51934d95db5f9b4779441
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);
}