1#ifndef __GSL_VERSION_H__
2#define __GSL_VERSION_H__
3
4#include <gsl/gsl_types.h>
5
6#undef __BEGIN_DECLS
7#undef __END_DECLS
8#ifdef __cplusplus
9# define __BEGIN_DECLS extern "C" {
10# define __END_DECLS }
11#else
12# define __BEGIN_DECLS /* empty */
13# define __END_DECLS /* empty */
14#endif
15__BEGIN_DECLS
16
17
18#define GSL_VERSION "2.7.1"
19#define GSL_MAJOR_VERSION 2
20#define GSL_MINOR_VERSION 7
21
22GSL_VAR const char * gsl_version;
23
24__END_DECLS
25
26#endif /* __GSL_VERSION_H__ */
27