Cleanup: bt namespace for compat strerror_r
[babeltrace.git] / include / babeltrace / compat / string.h
index 609261613fe8d4d3d75ed833b02bb8404929ae6a..2aa7bc3ca9328b85262cbed714f587c8e9eca76b 100644 (file)
@@ -30,7 +30,7 @@
 
 /* XSI-compliant strerror_r */
 static inline
-int compat_strerror_r(int errnum, char *buf, size_t buflen)
+int bt_strerror_r(int errnum, char *buf, size_t buflen)
 {
        return strerror_r(errnum, buf, buflen);
 }
@@ -39,7 +39,7 @@ int compat_strerror_r(int errnum, char *buf, size_t buflen)
 
 /* GNU-compliant strerror_r */
 static inline
-int compat_strerror_r(int errnum, char *buf, size_t buflen)
+int bt_strerror_r(int errnum, char *buf, size_t buflen)
 {
        char *retbuf;
 
This page took 0.023042 seconds and 4 git commands to generate.