/usr/include/link-grammar/link-features.h is in liblink-grammar-dev 5.3.16-2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 | #ifndef LINK_FEATURES_H
#define LINK_FEATURES_H
#if defined(_MSC_VER) && !defined(LINK_GRAMMAR_DLL_EXPORT)
#define LINK_GRAMMAR_DLL_EXPORT 1
#endif
#ifdef __cplusplus
# define LINK_BEGIN_DECLS extern "C" {
# define LINK_END_DECLS }
#else
# define LINK_BEGIN_DECLS
# define LINK_END_DECLS
#endif
#ifndef link_public_api
# if defined(_MSC_VER) && !defined(LINK_GRAMMAR_STATIC)
# if !defined LINK_GRAMMAR_DLL_EXPORT
# error !defined LINK_GRAMMAR_DLL_EXPORT
# endif
# if LINK_GRAMMAR_DLL_EXPORT
# define link_public_api(x) __declspec(dllexport) x
# else
# define link_public_api(x) __declspec(dllimport) x
# endif
# else
# define link_public_api(x) x
# endif
#endif
#define LINK_MAJOR_VERSION 5
#define LINK_MINOR_VERSION 3
#define LINK_MICRO_VERSION 16
#define LINK_VERSION_STRING "5.3.16"
#endif
|