fix: add include guards to compat/path.h
[lttng-tools.git] / src / common / compat / path.h
index f4ac6bfef2c8af417a97d34314a7af21de725305..5584e1b64af5781b3fcdbb6022c417f9ad2febe7 100644 (file)
@@ -5,9 +5,14 @@
  *
  */
 
+#ifndef _COMPAT_PATH_H
+#define _COMPAT_PATH_H
+
 /* Build platform's preferred path separator. */
 #if defined(_WIN32) || defined(__CYGWIN__)
 #define LTTNG_PATH_SEPARATOR '\\'
 #else
 #define LTTNG_PATH_SEPARATOR '/'
 #endif
+
+#endif /* _COMPAT_PATH_H */
This page took 0.02283 seconds and 4 git commands to generate.