//===----------------------------- filenames.h ----------------------------===// | |
// | |
// The LLVM Compiler Infrastructure | |
// | |
// This file is dual licensed under the MIT and the University of Illinois Open | |
// Source Licenses. See LICENSE.TXT for details. | |
// | |
//===----------------------------------------------------------------------===// | |
#ifndef FILENAMES_H | |
#define FILENAMES_H | |
#define IS_ABSOLUTE_PATH(path) ((path)[0] == '/') | |
#endif |