/* * Very simple but very effective user-space memory tester. * Originally by Simon Kirby * Version 2 by Charles Cazabon * Version 3 not publicly released. * Version 4 rewrite: * Copyright (C) 2006 Charles Cazabon * Licensed under the terms of the GNU General Public License version 2 (only). * See the file COPYING for details. * * This file contains typedefs and structure definitions. * */ typedef unsigned long ul; typedef unsigned long long ull; typedef unsigned long volatile ulv; struct test { char *name; int (*fp)(); };