gsl_version.h 399 B

12345678910111213141516171819202122232425
  1. #ifndef __GSL_VERSION_H__
  2. #define __GSL_VERSION_H__
  3. #include "gsl_types.h"
  4. #undef __BEGIN_DECLS
  5. #undef __END_DECLS
  6. #ifdef __cplusplus
  7. # define __BEGIN_DECLS extern "C" {
  8. # define __END_DECLS }
  9. #else
  10. # define __BEGIN_DECLS /* empty */
  11. # define __END_DECLS /* empty */
  12. #endif
  13. __BEGIN_DECLS
  14. #define GSL_VERSION "1.10"
  15. GSL_VAR const char * gsl_version;
  16. __END_DECLS
  17. #endif /* __GSL_VERSION_H__ */