From e741001dcb105638b6a3cdaf0ac90bf5d2dff14c Mon Sep 17 00:00:00 2001 From: Mathieu Faverge <mathieu.faverge@inria.fr> Date: Thu, 5 Oct 2017 17:26:46 +0200 Subject: [PATCH] Some cleanup on file headers --- drivers/iohb.h | 6 +++--- drivers/mmio.h | 8 +++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/drivers/iohb.h b/drivers/iohb.h index 191659a6..c067fd30 100644 --- a/drivers/iohb.h +++ b/drivers/iohb.h @@ -1,5 +1,5 @@ -#ifndef IOHB_H -#define IOHB_H +#ifndef _iohb_h_ +#define _iohb_h_ int readHB_info(const char* filename, int* M, int* N, int* nz, char** Type, int* Nrhs); @@ -52,4 +52,4 @@ int ParseRfmt(char* fmt, int* perline, int* width, int* prec, char* flag); void IOHBTerminate(char* message); -#endif +#endif /* _iohb_h_ */ diff --git a/drivers/mmio.h b/drivers/mmio.h index 28e40b02..ad586f50 100644 --- a/drivers/mmio.h +++ b/drivers/mmio.h @@ -6,8 +6,8 @@ * */ -#ifndef MM_IO_H -#define MM_IO_H +#ifndef _mmio_h_ +#define _mmio_h_ #define MM_MAX_LINE_LENGTH 1025 #define MatrixMarketBanner "%%MatrixMarket" @@ -126,6 +126,4 @@ int mm_read_mtx_crd_entry(FILE *f, int *Itab, int *Jtab, double *real, double *i int mm_read_unsymmetric_sparse(const char *fname, int *M_, int *N_, int *nz_, double **val_, int **I_, int **J_); - - -#endif +#endif /* _mmio_h_ */ -- GitLab