blob: 88eaf9af3298eb2dcd6955ab977c08db8737223a [file] [log] [blame]
plars865695b2001-08-27 22:15:12 +00001/******************************************************************************/
2/* */
3/* Copyright (c) International Business Machines Corp., 2001 */
4/* */
5/* This program is free software; you can redistribute it and/or modify */
6/* it under the terms of the GNU General Public License as published by */
7/* the Free Software Foundation; either version 2 of the License, or */
8/* (at your option) any later version. */
9/* */
10/* This program is distributed in the hope that it will be useful, */
11/* but WITHOUT ANY WARRANTY; without even the implied warranty of */
12/* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See */
13/* the GNU General Public License for more details. */
14/* */
15/* You should have received a copy of the GNU General Public License */
16/* along with this program; if not, write to the Free Software */
Wanlong Gao4548c6c2012-10-19 18:03:36 +080017/* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */
plars865695b2001-08-27 22:15:12 +000018/* */
19/******************************************************************************/
20
robbiewda806742002-03-28 16:12:52 +000021#include <stdio.h>
robbiew88e7b182003-03-13 19:00:13 +000022#include <stdlib.h>
vapiera07bcfe2007-07-21 20:53:16 +000023#include <unistd.h>
robbiew88e7b182003-03-13 19:00:13 +000024
Wanlong Gao354ebb42012-12-07 10:10:04 +080025int main(void)
plars865695b2001-08-27 22:15:12 +000026{
Wanlong Gao354ebb42012-12-07 10:10:04 +080027 close(1);
28 printf("U are running Linux Memory Management Stress Tests.\n");
29 exit(0);
Chris Dearmanec6edca2012-10-17 19:54:01 -070030}