Fix: Hide readwrite symbols in common lib
[lttng-tools.git] / src / common / readwrite.c
index a862d1cffd1f9e195ed294e13f1a3438dbf094f4..8a0b347f717eb76647c2aa0e81238285b96646b4 100644 (file)
@@ -32,6 +32,7 @@
  * error occured.
  * The error can be checked by querying errno.
  */
+LTTNG_HIDDEN
 ssize_t lttng_read(int fd, void *buf, size_t count)
 {
        size_t i = 0;
@@ -69,6 +70,7 @@ error:
        }
 }
 
+LTTNG_HIDDEN
 ssize_t lttng_write(int fd, const void *buf, size_t count)
 {
        size_t i = 0;
This page took 0.0237 seconds and 4 git commands to generate.