Könnte so aussehen:
Delphi-Quellcode:
type
PVector3 = ^TVector3;
TVector3 = array [1..3] of Double;
PMatrix33 = ^TMatrix33;
TMatrix33 = array [1..3] of TVector3;
procedure jacobi3x3(var a: TMatrix33; var d: TVector3; var v: TMatrix33);
Wobei ich bei C++ eher von [0..2] ausgehen würde (type[3] -> array [0..2] of type).