Author: dlydick
Date: Fri Nov 4 12:51:17 2005
New Revision: 330892
URL: http://svn.apache.org/viewcvs?rev=330892&view=rev
Log:
Moved prototype for jvm() from 'jvm/src/jvm.h'
Minor documentation changes
Modified:
incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/include/arch.h
Modified: incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/include/arch.h
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/include/arch.h?rev=330892&r1=330891&r2=330892&view=diff
==============================================================================
--- incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/include/arch.h (original)
+++ incubator/harmony/enhanced/trunk/sandbox/contribs/bootjvm/bootJVM/jvm/include/arch.h Fri
Nov 4 12:51:17 2005
@@ -12,15 +12,10 @@
* present them for normative use by the compiler. Also global
* constant strings for several purposes.
*
+ * For Java source files, information is found
+ * in @link org/apache/harmony/Copyright.java
+ org/apache/harmony/Copyright.java@endlink.
*
- * @todo HARMONY-6-jvm-arch.h-1 There needs to be a Java equivalent
- * written for the macros @link #ARCH_COPYRIGHT_TEXT_APACHE
- ARCH_COPYRIGHT_TEXT_APACHE@endlink, @link
- #ARCH_LICENSE_TEXT_APACHE ARCH_LICENSE_TEXT_APACHE@endlink,
- * @link #ARCH_HEADER_COPYRIGHT_APACHE()
- ARCH_HEADER_COPYRIGHT_APACHE()@endlink
- * and @link #ARCH_SOURCE_COPYRIGHT_APACHE()
- ARCH_SOURCE_COPYRIGHT_APACHE()@endlink
*
* @section Control
*
@@ -534,6 +529,10 @@
#define ARCH_ODD_ADDRESS_SIGSEGV
#endif
#endif
+
+/* Prototypes for functions in 'jvm.c' */
+
+extern int jvm(int argc, char **argv, char **envp);
#endif /* _arch_h_included_ */
|