Correct ilaver C declaration
authorErik Schnetter <schnetter@gmail.com>
Thu, 25 Dec 2014 22:41:17 +0000 (17:41 -0500)
committerErik Schnetter <schnetter@gmail.com>
Thu, 25 Dec 2014 22:41:17 +0000 (17:41 -0500)
lapack-netlib/lapacke/include/lapacke.h
lapack-netlib/lapacke/src/lapacke_ilaver.c

index a31c10d..e506319 100644 (file)
@@ -10707,9 +10707,9 @@ lapack_int LAPACKE_zsyr_work( int matrix_order, char uplo, lapack_int n,
                                   const lapack_complex_double* x,
                                   lapack_int incx, lapack_complex_double* a,
                                   lapack_int lda );
-void LAPACKE_ilaver( const lapack_int* vers_major,
-                     const lapack_int* vers_minor,
-                     const lapack_int* vers_patch );
+void LAPACKE_ilaver( lapack_int* vers_major,
+                     lapack_int* vers_minor,
+                     lapack_int* vers_patch );
 
 
 #define LAPACK_sgetrf LAPACK_GLOBAL(sgetrf,SGETRF)
@@ -16435,8 +16435,8 @@ void LAPACK_csyr( char* uplo, lapack_int* n, lapack_complex_float* alpha,
 void LAPACK_zsyr( char* uplo, lapack_int* n, lapack_complex_double* alpha,
                       const lapack_complex_double* x, lapack_int* incx,
                       lapack_complex_double* a, lapack_int* lda );
-void LAPACK_ilaver( const lapack_int* vers_major, const lapack_int* vers_minor,
-                     const lapack_int* vers_patch );
+void LAPACK_ilaver( lapack_int* vers_major, lapack_int* vers_minor,
+                     lapack_int* vers_patch );
 
 #ifdef __cplusplus
 }
index bec1d90..ed362e9 100644 (file)
   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
   THE POSSIBILITY OF SUCH DAMAGE.
 *****************************************************************************
-* Contents: Native high-level C interface to LAPACK function dgesv
+* Contents: Native high-level C interface to LAPACK function ilaver
 * Author: Intel Corporation
 * Generated November, 2011
 *****************************************************************************/
 
 #include "lapacke_utils.h"
 
-void LAPACKE_ilaver( const lapack_int* vers_major,
-                     const lapack_int* vers_minor,
-                     const lapack_int* vers_patch )
+void LAPACKE_ilaver( lapack_int* vers_major,
+                     lapack_int* vers_minor,
+                     lapack_int* vers_patch )
 {
     /* Call LAPACK function */
     LAPACK_ilaver( vers_major, vers_minor, vers_patch );