diff options
Diffstat (limited to 'libjava/include')
-rw-r--r-- | libjava/include/java-interp.h | 3 | ||||
-rw-r--r-- | libjava/include/jvm.h | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libjava/include/java-interp.h b/libjava/include/java-interp.h index c8e041a..4126c2f 100644 --- a/libjava/include/java-interp.h +++ b/libjava/include/java-interp.h @@ -45,9 +45,6 @@ int _Jv_count_arguments (_Jv_Utf8Const *signature, jboolean staticp = true); void _Jv_VerifyMethod (_Jv_InterpMethod *method); -/* FIXME: this should really be defined in some more generic place */ -#define ROUND(V, A) (((((unsigned) (V))-1) | ((A)-1))+1) - /* the interpreter is written in C++, primarily because it makes it easy for * the entire thing to be "friend" with class Class. */ diff --git a/libjava/include/jvm.h b/libjava/include/jvm.h index a3d06e7..ff2c9b1e 100644 --- a/libjava/include/jvm.h +++ b/libjava/include/jvm.h @@ -555,4 +555,7 @@ extern void (*_Jv_JVMPI_Notify_THREAD_START) (JVMPI_Event *event); extern void (*_Jv_JVMPI_Notify_THREAD_END) (JVMPI_Event *event); #endif +/* FIXME: this should really be defined in some more generic place */ +#define ROUND(V, A) (((((unsigned) (V))-1) | ((A)-1))+1) + #endif /* __JAVA_JVM_H__ */ |