diff options
| author | David Lamparter <equinox@diac24.net> | 2019-05-12 22:39:59 +0200 | 
|---|---|---|
| committer | David Lamparter <equinox@diac24.net> | 2019-06-03 16:44:32 +0200 | 
| commit | 8be3678a2331250b0559d07526e66b73d1794d8c (patch) | |
| tree | a4af45407a189a6d7ee0a03649ce3f070502e1e6 /lib/module.h | |
| parent | e8c672ea8101c541f66e0959d526ae4f5a2a778d (diff) | |
lib/printf: rename & private __find_arguments
These are internal to printf(), and symbols starting with __ are
reserved for the compiler/libc.
Signed-off-by: David Lamparter <equinox@diac24.net>
Diffstat (limited to 'lib/module.h')
| -rw-r--r-- | lib/module.h | 10 | 
1 files changed, 0 insertions, 10 deletions
diff --git a/lib/module.h b/lib/module.h index c5f96db85b..79cf52d75a 100644 --- a/lib/module.h +++ b/lib/module.h @@ -24,16 +24,6 @@  extern "C" {  #endif -#if !defined(__GNUC__) -#error module code needs GCC visibility extensions -#elif __GNUC__ < 4 -#error module code needs GCC visibility extensions -#else -# define DSO_PUBLIC __attribute__ ((visibility ("default"))) -# define DSO_SELF   __attribute__ ((visibility ("protected"))) -# define DSO_LOCAL  __attribute__ ((visibility ("hidden"))) -#endif -  struct frrmod_runtime;  struct frrmod_info {  | 
