Browse Source

Fix includes

tags/v0.3.22^2
Martin Kroeker GitHub 3 years ago
parent
commit
d39978cd7f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 4 additions and 4 deletions
  1. +1
    -1
      relapack/src/ctrsyl_rec2.c
  2. +2
    -2
      relapack/src/relapack.h
  3. +1
    -1
      relapack/src/ztrsyl_rec2.c

+ 1
- 1
relapack/src/ctrsyl_rec2.c View File

@@ -10,7 +10,7 @@
http://www.netlib.org/f2c/libf2c.zip
*/

#include "../config.h"
#include "relapack_config.h"
#include "f2c.h"

#if BLAS_COMPLEX_FUNCTIONS_AS_ROUTINES


+ 2
- 2
relapack/src/relapack.h View File

@@ -1,7 +1,7 @@
#ifndef RELAPACK_INT_H
#define RELAPACK_INT_H
#include <string.h>
#include "../../config.h"
#include "config.h"
#if defined(OS_WINDOWS) && defined(__64BIT__)
typedef long long BLASLONG;
typedef unsigned long long BLASULONG;
@@ -9,7 +9,7 @@ typedef unsigned long long BLASULONG;
typedef long BLASLONG;
typedef unsigned long BLASULONG;
#endif
#include "../config.h"
#include "relapack_config.h"

#include "../inc/relapack.h"



+ 1
- 1
relapack/src/ztrsyl_rec2.c View File

@@ -10,7 +10,7 @@
http://www.netlib.org/f2c/libf2c.zip
*/

#include "../config.h"
#include "relapack_config.h"
#include "f2c.h"

#if BLAS_COMPLEX_FUNCTIONS_AS_ROUTINES


Loading…
Cancel
Save