If you are programming in C, the call is:
terminal_();If you are programming in Fortran, the call is:
call terminal();When you compile your program, you need to link with the penplot and X libraries.
To compile and link a C program with Penplot, type this:
cc -c program.cTo compile and link a Fortran program with Penplot, type this:
cc program.o -lpenplot -lX11 -l{F,I,U}77 -lm
attach X11
f77 -c program.f
f77 program.o -lpenplot -lX11