blob: 726b6adde41dfb9bbcc72ba7dc4ae71cca006b8c [file] [log] [blame]
Peter Collingbournead9841e2014-11-27 00:06:42 +00001//===----------------------------- filenames.h ----------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is dual licensed under the MIT and the University of Illinois Open
6// Source Licenses. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef FILENAMES_H
11#define FILENAMES_H
12
13#define IS_ABSOLUTE_PATH(path) ((path)[0] == '/')
14
15#endif