mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-11 19:49:32 +00:00
16 lines
257 B
C++
16 lines
257 B
C++
#include <gcj/cni.h>
|
|
|
|
#include "longfield.h"
|
|
#include <java/lang/System.h>
|
|
#include <java/io/PrintStream.h>
|
|
|
|
void
|
|
longfield::doitc ()
|
|
{
|
|
java::io::PrintStream *ps = java::lang::System::out;
|
|
|
|
ps->println(lval);
|
|
ps->println(bval);
|
|
ps->println(sval);
|
|
}
|