llvm-capstone/llgo/include/filenames.h
Peter Collingbourne ad9841e8ac Initial commit of llgo.
llvm-svn: 222857
2014-11-27 00:06:42 +00:00

16 lines
456 B
C

//===----------------------------- 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