Index: scripts/check_jni_methods.sh =================================================================== RCS file: /cvsroot/classpath/classpath/scripts/check_jni_methods.sh,v retrieving revision 1.3 diff -u -r1.3 check_jni_methods.sh --- scripts/check_jni_methods.sh 11 Jan 2005 19:24:20 -0000 1.3 +++ scripts/check_jni_methods.sh 13 Jan 2005 11:23:18 -0000 @@ -8,14 +8,14 @@ # Find all methods defined in the header files generated # from the java source files. grep -h '^JNIEXPORT .* Java_' include/*.h | \ - sed -e 's,^JNIEXPORT .* JNICALL \(Java_\w*\) (.*$,\1,' | \ + sed -e 's,.*JNICALL \(Java_[a-z_A-Z0-9]*\).*$,\1,' | \ sort > $TMPFILE # Find all methods in the JNI C source files. find native/jni -name \*.c | \ xargs grep -h '^Java_' | \ - sed -e 's,^\(Java_\w*\) *(.*$,\1,' \ - | sort > $TMPFILE2 + sed -e 's,^\(Java_[a-z_A-Z0-9]*\) *(.*$,\1,' | \ + sort > $TMPFILE2 # Write temporary ignore file. cat > $TMPFILE3 << EOF