RawData.java: Added copyright header.

* gnu/gcj/RawData.java: Added copyright header.
	* include/jni.h (_Jv_va_list): Always define as va_list.

From-SVN: r26855
This commit is contained in:
Tom Tromey 1999-05-10 08:42:28 +00:00 committed by Tom Tromey
parent 79a9a529a6
commit a31b081d11
3 changed files with 16 additions and 8 deletions

View 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

View 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. */

View 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