summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--lib/replace/replace.h18
-rw-r--r--lib/util/attr.h6
2 files changed, 18 insertions, 6 deletions
diff --git a/lib/replace/replace.h b/lib/replace/replace.h
index 7adc224bf2..713634e541 100644
--- a/lib/replace/replace.h
+++ b/lib/replace/replace.h
@@ -753,4 +753,22 @@ char *ufc_crypt(const char *key, const char *salt);
#define fdatasync(fd) fsync(fd)
#endif
+/* these are used to mark symbols as local to a shared lib, or
+ * publicly available via the shared lib API */
+#ifndef _PUBLIC_
+#ifdef HAVE_VISIBILITY_ATTR
+#define _PUBLIC_ __attribute__((visibility("default")))
+#else
+#define _PUBLIC_
+#endif
+#endif
+
+#ifndef _PRIVATE_
+#ifdef HAVE_VISIBILITY_ATTR
+# define _PRIVATE_ __attribute__((visibility("hidden")))
+#else
+# define _PRIVATE_
+#endif
+#endif
+
#endif /* _LIBREPLACE_REPLACE_H */
diff --git a/lib/util/attr.h b/lib/util/attr.h
index f64b272a67..9b346459b6 100644
--- a/lib/util/attr.h
+++ b/lib/util/attr.h
@@ -29,12 +29,6 @@
/** Feel free to add definitions for other compilers here. */
#endif
-#ifdef HAVE_VISIBILITY_ATTR
-# define _PUBLIC_ __attribute__((visibility("default")))
-#else
-# define _PUBLIC_
-#endif
-
#ifndef _DEPRECATED_
#if (__GNUC__ >= 3) && (__GNUC_MINOR__ >= 1 )
#define _DEPRECATED_ __attribute__ ((deprecated))