f4ac6bfef2c8af417a97d34314a7af21de725305
[lttng-tools.git] / src / common / compat / path.h
1 /*
2 * Copyright (C) 2020 Jérémie Galarneau <jeremie.galarneau@efficios.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0-only
5 *
6 */
7
8 /* Build platform's preferred path separator. */
9 #if defined(_WIN32) || defined(__CYGWIN__)
10 #define LTTNG_PATH_SEPARATOR '\\'
11 #else
12 #define LTTNG_PATH_SEPARATOR '/'
13 #endif
This page took 0.028434 seconds and 3 git commands to generate.