Skip to content

Commit 70569cc

Browse files
committed
in EXAMPLE/, parse_command_line(), argument lwork should be of type int_t*
1 parent 6887410 commit 70569cc

16 files changed

+28
-28
lines changed

EXAMPLE/clinsolx.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ at the top-level directory.
2626
#include <getopt.h>
2727
#include "slu_cdefs.h"
2828

29-
void parse_command_line(int argc, char *argv[], int *lwork,
29+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3030
float *u, yes_no_t *equil, trans_t *trans);
3131

3232
int main(int argc, char *argv[])

EXAMPLE/clinsolx1.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ at the top-level directory.
2828
#include <getopt.h>
2929
#include "slu_cdefs.h"
3030

31-
void parse_command_line(int argc, char *argv[], int *lwork,
31+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3232
float *u, yes_no_t *equil, trans_t *trans);
3333

3434
int main(int argc, char *argv[])
@@ -236,7 +236,7 @@ int main(int argc, char *argv[])
236236
* \brief Parse command line options to get relaxed snode size, panel size, etc.
237237
*/
238238
void
239-
parse_command_line(int argc, char *argv[], int *lwork,
239+
parse_command_line(int argc, char *argv[], int_t *lwork,
240240
float *u, yes_no_t *equil, trans_t *trans )
241241
{
242242
int c;

EXAMPLE/clinsolx2.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ at the top-level directory.
2727
#include <getopt.h>
2828
#include "slu_cdefs.h"
2929

30-
void parse_command_line(int argc, char *argv[], int *lwork,
30+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3131
float *u, yes_no_t *equil, trans_t *trans);
3232

3333
int main(int argc, char *argv[])
@@ -272,7 +272,7 @@ int main(int argc, char *argv[])
272272
* \brief Parse command line options to get relaxed snode size, panel size, etc.
273273
*/
274274
void
275-
parse_command_line(int argc, char *argv[], int *lwork,
275+
parse_command_line(int argc, char *argv[], int_t *lwork,
276276
float *u, yes_no_t *equil, trans_t *trans )
277277
{
278278
int c;

EXAMPLE/clinsolx3.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ at the top-level directory.
2828
#include <getopt.h>
2929
#include "slu_cdefs.h"
3030

31-
void parse_command_line(int argc, char *argv[], int *lwork,
31+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3232
float *u, yes_no_t *equil, trans_t *trans);
3333

3434
/*!
@@ -269,7 +269,7 @@ int main(int argc, char *argv[])
269269
* Parse command line options to get relaxed snode size, panel size, etc.
270270
*/
271271
void
272-
parse_command_line(int argc, char *argv[], int *lwork,
272+
parse_command_line(int argc, char *argv[], int_t *lwork,
273273
float *u, yes_no_t *equil, trans_t *trans )
274274
{
275275
int c;

EXAMPLE/dlinsolx.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ at the top-level directory.
2626
#include <getopt.h>
2727
#include "slu_ddefs.h"
2828

29-
void parse_command_line(int argc, char *argv[], int *lwork,
29+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3030
double *u, yes_no_t *equil, trans_t *trans);
3131

3232
int main(int argc, char *argv[])

EXAMPLE/dlinsolx1.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ at the top-level directory.
2828
#include <getopt.h>
2929
#include "slu_ddefs.h"
3030

31-
void parse_command_line(int argc, char *argv[], int *lwork,
31+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3232
double *u, yes_no_t *equil, trans_t *trans);
3333

3434
int main(int argc, char *argv[])
@@ -236,7 +236,7 @@ int main(int argc, char *argv[])
236236
* \brief Parse command line options to get relaxed snode size, panel size, etc.
237237
*/
238238
void
239-
parse_command_line(int argc, char *argv[], int *lwork,
239+
parse_command_line(int argc, char *argv[], int_t *lwork,
240240
double *u, yes_no_t *equil, trans_t *trans )
241241
{
242242
int c;

EXAMPLE/dlinsolx2.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ at the top-level directory.
2727
#include <getopt.h>
2828
#include "slu_ddefs.h"
2929

30-
void parse_command_line(int argc, char *argv[], int *lwork,
30+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3131
double *u, yes_no_t *equil, trans_t *trans);
3232

3333
int main(int argc, char *argv[])
@@ -272,7 +272,7 @@ int main(int argc, char *argv[])
272272
* \brief Parse command line options to get relaxed snode size, panel size, etc.
273273
*/
274274
void
275-
parse_command_line(int argc, char *argv[], int *lwork,
275+
parse_command_line(int argc, char *argv[], int_t *lwork,
276276
double *u, yes_no_t *equil, trans_t *trans )
277277
{
278278
int c;

EXAMPLE/dlinsolx3.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ at the top-level directory.
2828
#include <getopt.h>
2929
#include "slu_ddefs.h"
3030

31-
void parse_command_line(int argc, char *argv[], int *lwork,
31+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3232
double *u, yes_no_t *equil, trans_t *trans);
3333

3434
/*!
@@ -269,7 +269,7 @@ int main(int argc, char *argv[])
269269
* Parse command line options to get relaxed snode size, panel size, etc.
270270
*/
271271
void
272-
parse_command_line(int argc, char *argv[], int *lwork,
272+
parse_command_line(int argc, char *argv[], int_t *lwork,
273273
double *u, yes_no_t *equil, trans_t *trans )
274274
{
275275
int c;

EXAMPLE/slinsolx.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ at the top-level directory.
2626
#include <getopt.h>
2727
#include "slu_sdefs.h"
2828

29-
void parse_command_line(int argc, char *argv[], int *lwork,
29+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3030
float *u, yes_no_t *equil, trans_t *trans);
3131

3232
int main(int argc, char *argv[])

EXAMPLE/slinsolx1.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ at the top-level directory.
2828
#include <getopt.h>
2929
#include "slu_sdefs.h"
3030

31-
void parse_command_line(int argc, char *argv[], int *lwork,
31+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3232
float *u, yes_no_t *equil, trans_t *trans);
3333

3434
int main(int argc, char *argv[])
@@ -236,7 +236,7 @@ int main(int argc, char *argv[])
236236
* \brief Parse command line options to get relaxed snode size, panel size, etc.
237237
*/
238238
void
239-
parse_command_line(int argc, char *argv[], int *lwork,
239+
parse_command_line(int argc, char *argv[], int_t *lwork,
240240
float *u, yes_no_t *equil, trans_t *trans )
241241
{
242242
int c;

EXAMPLE/slinsolx2.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ at the top-level directory.
2727
#include <getopt.h>
2828
#include "slu_sdefs.h"
2929

30-
void parse_command_line(int argc, char *argv[], int *lwork,
30+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3131
float *u, yes_no_t *equil, trans_t *trans);
3232

3333
int main(int argc, char *argv[])
@@ -272,7 +272,7 @@ int main(int argc, char *argv[])
272272
* \brief Parse command line options to get relaxed snode size, panel size, etc.
273273
*/
274274
void
275-
parse_command_line(int argc, char *argv[], int *lwork,
275+
parse_command_line(int argc, char *argv[], int_t *lwork,
276276
float *u, yes_no_t *equil, trans_t *trans )
277277
{
278278
int c;

EXAMPLE/slinsolx3.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ at the top-level directory.
2828
#include <getopt.h>
2929
#include "slu_sdefs.h"
3030

31-
void parse_command_line(int argc, char *argv[], int *lwork,
31+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3232
float *u, yes_no_t *equil, trans_t *trans);
3333

3434
/*!
@@ -269,7 +269,7 @@ int main(int argc, char *argv[])
269269
* Parse command line options to get relaxed snode size, panel size, etc.
270270
*/
271271
void
272-
parse_command_line(int argc, char *argv[], int *lwork,
272+
parse_command_line(int argc, char *argv[], int_t *lwork,
273273
float *u, yes_no_t *equil, trans_t *trans )
274274
{
275275
int c;

EXAMPLE/zlinsolx.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ at the top-level directory.
2626
#include <getopt.h>
2727
#include "slu_zdefs.h"
2828

29-
void parse_command_line(int argc, char *argv[], int *lwork,
29+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3030
double *u, yes_no_t *equil, trans_t *trans);
3131

3232
int main(int argc, char *argv[])

EXAMPLE/zlinsolx1.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ at the top-level directory.
2828
#include <getopt.h>
2929
#include "slu_zdefs.h"
3030

31-
void parse_command_line(int argc, char *argv[], int *lwork,
31+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3232
double *u, yes_no_t *equil, trans_t *trans);
3333

3434
int main(int argc, char *argv[])
@@ -236,7 +236,7 @@ int main(int argc, char *argv[])
236236
* \brief Parse command line options to get relaxed snode size, panel size, etc.
237237
*/
238238
void
239-
parse_command_line(int argc, char *argv[], int *lwork,
239+
parse_command_line(int argc, char *argv[], int_t *lwork,
240240
double *u, yes_no_t *equil, trans_t *trans )
241241
{
242242
int c;

EXAMPLE/zlinsolx2.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ at the top-level directory.
2727
#include <getopt.h>
2828
#include "slu_zdefs.h"
2929

30-
void parse_command_line(int argc, char *argv[], int *lwork,
30+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3131
double *u, yes_no_t *equil, trans_t *trans);
3232

3333
int main(int argc, char *argv[])
@@ -272,7 +272,7 @@ int main(int argc, char *argv[])
272272
* \brief Parse command line options to get relaxed snode size, panel size, etc.
273273
*/
274274
void
275-
parse_command_line(int argc, char *argv[], int *lwork,
275+
parse_command_line(int argc, char *argv[], int_t *lwork,
276276
double *u, yes_no_t *equil, trans_t *trans )
277277
{
278278
int c;

EXAMPLE/zlinsolx3.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ at the top-level directory.
2828
#include <getopt.h>
2929
#include "slu_zdefs.h"
3030

31-
void parse_command_line(int argc, char *argv[], int *lwork,
31+
void parse_command_line(int argc, char *argv[], int_t *lwork,
3232
double *u, yes_no_t *equil, trans_t *trans);
3333

3434
/*!
@@ -269,7 +269,7 @@ int main(int argc, char *argv[])
269269
* Parse command line options to get relaxed snode size, panel size, etc.
270270
*/
271271
void
272-
parse_command_line(int argc, char *argv[], int *lwork,
272+
parse_command_line(int argc, char *argv[], int_t *lwork,
273273
double *u, yes_no_t *equil, trans_t *trans )
274274
{
275275
int c;

0 commit comments

Comments
 (0)