diff options
author | Timothy Gu <timothygu99@gmail.com> | 2014-06-27 12:05:18 -0700 |
---|---|---|
committer | Timothy Gu <timothygu99@gmail.com> | 2014-06-27 12:05:18 -0700 |
commit | 6c2ead30f0526226d87c9287b956584f867dd2a5 (patch) | |
tree | 92772d55b77c27da41af68ac8d5ea98ee9b59baa /interface/zsyr.c | |
parent | d10db52edbbc49100c9c12567f5273b6da3e4722 (diff) | |
download | openblas-6c2ead30f0526226d87c9287b956584f867dd2a5.tar.gz openblas-6c2ead30f0526226d87c9287b956584f867dd2a5.tar.bz2 openblas-6c2ead30f0526226d87c9287b956584f867dd2a5.zip |
Remove all trailing whitespace except lapack-netlib
Signed-off-by: Timothy Gu <timothygu99@gmail.com>
Diffstat (limited to 'interface/zsyr.c')
-rw-r--r-- | interface/zsyr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/interface/zsyr.c b/interface/zsyr.c index b6b5202ec..5d62e8797 100644 --- a/interface/zsyr.c +++ b/interface/zsyr.c @@ -76,7 +76,7 @@ static int (*syr_thread[])(BLASLONG, FLOAT *, FLOAT *, BLASLONG, FLOAT *, BLASLO #ifndef CBLAS -void NAME(char *UPLO, blasint *N, FLOAT *ALPHA, +void NAME(char *UPLO, blasint *N, FLOAT *ALPHA, FLOAT *x, blasint *INCX, FLOAT *a, blasint *LDA){ char uplo_arg = *UPLO; @@ -100,7 +100,7 @@ void NAME(char *UPLO, blasint *N, FLOAT *ALPHA, if (uplo_arg == 'U') uplo = 0; if (uplo_arg == 'L') uplo = 1; - + info = 0; if (lda < MAX(1, n)) info = 7; @@ -112,7 +112,7 @@ void NAME(char *UPLO, blasint *N, FLOAT *ALPHA, BLASFUNC(xerbla)(ERROR_NAME, &info, sizeof(ERROR_NAME)); return; } - + #else @@ -142,7 +142,7 @@ void CNAME(enum CBLAS_ORDER order, enum CBLAS_UPLO Uplo, int n, FLOAT alpha, FLO if (incx == 0) info = 5; if (n < 0) info = 2; if (uplo < 0) info = 1; - + } if (order == CblasRowMajor) { |