Move to kernel style SPDX license identifiers
[lttng-tools.git] / src / common / compat / path.h
CommitLineData
6ec9dc48 1/*
ab5be9fa 2 * Copyright (C) 2020 Jérémie Galarneau <jeremie.galarneau@efficios.com>
6ec9dc48 3 *
ab5be9fa 4 * SPDX-License-Identifier: GPL-2.0-only
6ec9dc48 5 *
6ec9dc48
JG
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.023094 seconds and 4 git commands to generate.