Peter Collingbourne | ad9841e | 2014-11-27 00:06:42 +0000 | [diff] [blame] | 1 | //===----------------------------- 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 |