git: 9front

ref: b9e031951a57b34a700eeb70568d1fd86fc8f01c
dir: /sys/src/cmd/aquarela/alloc.c/

View raw version
#include <u.h>
#include <libc.h>
#include <ip.h>
#include <thread.h>
#include "netbios.h"

void *
nbemalloc(ulong nbytes)
{
	void *p;
	p = malloc(nbytes);
	if (p == nil) {
		print("nbemalloc: failed\n");
		threadexitsall("mem");
	}
	return p;
}