Fix: pass private data to context callbacks
[lttng-ust.git] / snprintf / floatio.h
index ad696314289e9f50ede98495b8d8a7f4657c7a91..deaa1934aa62b2323fed937543c5a7cfea445dce 100644 (file)
@@ -10,8 +10,6 @@
  * Chris Torek.
  */
 
-#include "ust-helper.h"
-
 /*
  * Floating point scanf/printf (input/output) definitions.
  */
 #error "floating point buffers too small"
 #endif
 
-LTTNG_HIDDEN
-char *__hdtoa(double, const char *, int, int *, int *, char **);
-LTTNG_HIDDEN
-char *__hldtoa(long double, const char *, int, int *, int *, char **);
-LTTNG_HIDDEN
-char *__ldtoa(long double *, int, int, int *, int *, char **);
+char *__hdtoa(double, const char *, int, int *, int *, char **)
+       __attribute__((visibility("hidden")));
+
+char *__hldtoa(long double, const char *, int, int *, int *, char **)
+       __attribute__((visibility("hidden")));
+
+char *__ldtoa(long double *, int, int, int *, int *, char **)
+       __attribute__((visibility("hidden")));
This page took 0.023948 seconds and 4 git commands to generate.