NetBSD/lib/libc/sys/Lint_sbrk.c

17 lines
232 B
C

/* $NetBSD: Lint_sbrk.c,v 1.1 1997/11/06 00:53:04 cgd Exp $ */
/*
* This file placed in the public domain.
* Chris Demetriou, November 5, 1997.
*/
#include <unistd.h>
/*ARGSUSED*/
char *
sbrk(incr)
int incr;
{
return (0);
}