Move to kernel style SPDX license identifiers
[lttng-tools.git] / src / common / compat / path.h
... / ...
CommitLineData
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.022389 seconds and 4 git commands to generate.