home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
kaffe-0.5p4-src.tgz
/
tar.out
/
contrib
/
kaffe
/
kaffevm
/
intrp
/
checks.h
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
1KB
|
40 lines
/*
* checks.h
* Validate the given item is of the correct type.
*
* Copyright (c) 1996 Systems Architecture Research Centre,
* City University, London, UK.
*
* See the file "license.terms" for information on usage and redistribution
* of this file, and for a DISCLAIMER OF ALL WARRANTIES.
*
* Written by Tim Wilkinson <tim@sarc.city.ac.uk>, May 1996.
*/
#ifndef __checks_h
#define __checks_h
#define check_local_int(l)
#define check_local_long(l)
#define check_local_float(l)
#define check_local_double(l)
#define check_local_ref(l)
#define check_stack_int(l)
#define check_stack_long(l)
#define check_stack_float(l)
#define check_stack_double(l)
#define check_stack_ref(l)
#define check_stack_array(l)
#define check_stack_intarray(l)
#define check_stack_longarray(l)
#define check_stack_floatarray(l)
#define check_stack_doublearray(l)
#define check_stack_refarray(l)
#define check_stack_bytearray(l)
#define check_stack_chararray(l)
#define check_stack_shortarray(l)
#endif