summaryrefslogtreecommitdiff
path: root/lib/libc/sys/Lint_brk.c
blob: 6ce98c0675ad0dae2d7ac4dacc64dc240031f3fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*	$OpenBSD: Lint_brk.c,v 1.4 2008/04/24 20:43:20 kurt Exp $	*/
/*	$NetBSD: Lint_brk.c,v 1.1 1997/11/06 00:52:52 cgd Exp $	*/

/*
 * This file placed in the public domain.
 * Chris Demetriou, November 5, 1997.
 */

#include <unistd.h>

/*ARGSUSED*/
int
brk(void *addr)
{
	return (0);
}