* gnu/gcj/RawData.java: Added copyright header.
authortromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 10 May 1999 08:42:28 +0000 (08:42 +0000)
committertromey <tromey@138bc75d-0d04-0410-961f-82ee72b054a4>
Mon, 10 May 1999 08:42:28 +0000 (08:42 +0000)
* include/jni.h (_Jv_va_list): Always define as va_list.

git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@26855 138bc75d-0d04-0410-961f-82ee72b054a4

libjava/ChangeLog
libjava/gnu/gcj/RawData.java
libjava/include/jni.h

index d69c059..0386adc 100644 (file)
@@ -1,3 +1,9 @@
+1999-05-10  Tom Tromey  <tromey@cygnus.com>
+
+       * gnu/gcj/RawData.java: Added copyright header.
+
+       * include/jni.h (_Jv_va_list): Always define as va_list.
+
 1999-05-9  Anthony Green  <green@cygnus.com>
 
        * java/text/DateFormat.java (computeInstance): Separate time
index ba0e2b7..9473fb0 100644 (file)
@@ -1,3 +1,11 @@
+/* Copyright (C) 1999  Cygnus Solutions
+
+   This file is part of libgcj.
+
+This software is copyrighted work licensed under the terms of the
+Libgcj License.  Please consult the file "LIBGCJ_LICENSE" for
+details.  */
+
 package gnu.gcj;
 
 /** A type uses to indicate pointers to non-Java data. */
index bf7b015..d589b02 100644 (file)
@@ -9,14 +9,8 @@ details.  */
 #ifndef __JAVA_JNI_H__
 #define __JAVA_JNI_H__
 
-#ifdef __GNUC__
-# define __need___va_list
-# include <stdarg.h>
-# define _Jv_va_list __gnuc_va_list
-#else
-# include <stdarg.h>
-# define _Jv_va_list va_list
-#endif
+#include <stdarg.h>
+#define _Jv_va_list va_list
 
 #ifdef __cplusplus