Skip to content

Commit 3bb70b8

Browse files
authored
Merge pull request #4205 from martin-frbg/fixintmain
Fix missing type declaration for main() in converted LAPACK files
2 parents 8843510 + 7f7d389 commit 3bb70b8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lapack-netlib/INSTALL/lsametst.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ static integer c__3 = 3;
426426
/* December 2016 */
427427

428428
/* ===================================================================== */
429-
/* Main program */ main(void)
429+
/* Main program */ int main(void)
430430
{
431431
/* Format strings */
432432
static char fmt_9999[] = "(\002 *** Error: LSAME( \002,a1,\002, \002,"

lapack-netlib/INSTALL/secondtst.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,7 +422,7 @@ static integer c__1000 = 1000;
422422

423423
/* ===================================================================== */
424424

425-
/* Main program */ main(void)
425+
/* Main program */ int main(void)
426426
{
427427
/* Format strings */
428428
static char fmt_9999[] = "(\002 Time for \002,g10.3,\002 SAXPY ops = "

0 commit comments

Comments
 (0)