#ifndef LIBVERSION_EXPORT_H
#define LIBVERSION_EXPORT_H
#ifdef LIBVERSION_STATIC_DEFINE
# define LIBVERSION_EXPORT
# define LIBVERSION_NO_EXPORT
#else
# ifndef LIBVERSION_EXPORT
# ifdef libversion_EXPORTS
# define LIBVERSION_EXPORT __attribute__((visibility("default")))
# else
# define LIBVERSION_EXPORT __attribute__((visibility("default")))
# endif
# endif
# ifndef LIBVERSION_NO_EXPORT
# define LIBVERSION_NO_EXPORT __attribute__((visibility("hidden")))
# endif
#endif
#ifndef LIBVERSION_DEPRECATED
# define LIBVERSION_DEPRECATED __attribute__ ((__deprecated__))
#endif
#ifndef LIBVERSION_DEPRECATED_EXPORT
# define LIBVERSION_DEPRECATED_EXPORT LIBVERSION_EXPORT LIBVERSION_DEPRECATED
#endif
#ifndef LIBVERSION_DEPRECATED_NO_EXPORT
# define LIBVERSION_DEPRECATED_NO_EXPORT LIBVERSION_NO_EXPORT LIBVERSION_DEPRECATED
#endif
#if 0#endif
#endif