File indexing completed on 2025-02-21 10:03:57
0001 #ifndef __GSL_VERSION_H__
0002 #define __GSL_VERSION_H__
0003
0004 #include <gsl/gsl_types.h>
0005
0006 #undef __BEGIN_DECLS
0007 #undef __END_DECLS
0008 #ifdef __cplusplus
0009 # define __BEGIN_DECLS extern "C" {
0010 # define __END_DECLS }
0011 #else
0012 # define __BEGIN_DECLS
0013 # define __END_DECLS
0014 #endif
0015 __BEGIN_DECLS
0016
0017
0018 #define GSL_VERSION "2.8"
0019 #define GSL_MAJOR_VERSION 2
0020 #define GSL_MINOR_VERSION 8
0021
0022 GSL_VAR const char * gsl_version;
0023
0024 __END_DECLS
0025
0026 #endif