blob: 6be97b05a649f923b14d55afce7a3c5265314a63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* $OpenBSD: Lint_sbrk.c,v 1.3 2005/11/28 16:54:07 deraadt Exp $ */
/* $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*/
void *
sbrk(int incr)
{
return (0);
}
|