Browse Source

Merge pull request #4205 from martin-frbg/fixintmain

Fix missing type declaration for main() in converted LAPACK files
tags/v0.3.24
Martin Kroeker GitHub 2 years ago
parent
commit
3bb70b8ca4
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      lapack-netlib/INSTALL/lsametst.c
  2. +1
    -1
      lapack-netlib/INSTALL/secondtst.c

+ 1
- 1
lapack-netlib/INSTALL/lsametst.c View File

@@ -426,7 +426,7 @@ static integer c__3 = 3;
/* December 2016 */

/* ===================================================================== */
/* Main program */ main(void)
/* Main program */ int main(void)
{
/* Format strings */
static char fmt_9999[] = "(\002 *** Error: LSAME( \002,a1,\002, \002,"


+ 1
- 1
lapack-netlib/INSTALL/secondtst.c View File

@@ -422,7 +422,7 @@ static integer c__1000 = 1000;

/* ===================================================================== */

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


Loading…
Cancel
Save