Skip to content

Commit fdf661c

Browse files
authored
Update DNRM2 function declaration in norm.c
1 parent 6773c53 commit fdf661c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • bng2/Network3/src/util/mathutils

bng2/Network3/src/util/mathutils/norm.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ double NORM( double *a, int dim){
1212
int n;
1313
int inca=1;
1414
double norm;
15-
extern double DNRM2();
16-
15+
extern double DNRM2(int *n, double *x, int *incx);
16+
1717
n=dim;
1818
return(DNRM2(&n, a, &inca));
1919
}

0 commit comments

Comments
 (0)