Welcome to mirror list, hosted at ThFree Co, Russian Federation.

get_high_address.c « lib « libltp « testsuite « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3b4105743c68d6957ff00bca87d5cf69f302f051 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* $Header$ */

/*
 *	(C) COPYRIGHT CRAY RESEARCH, INC.
 *	UNPUBLISHED PROPRIETARY INFORMATION.
 *	ALL RIGHTS RESERVED.
 */

#include <unistd.h> 

char *
get_high_address()
{
       return (char *)sbrk(0) + 16384;
}