github.com/llvm-mirror/llgo@v0.0.0-20190322182713-bf6f0a60fce1/include/filenames.h (about)

     1  //===----------------------------- filenames.h ----------------------------===//
     2  //
     3  // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
     4  // See https://llvm.org/LICENSE.txt for license information.
     5  // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
     6  //
     7  //===----------------------------------------------------------------------===//
     8  
     9  #ifndef FILENAMES_H
    10  #define FILENAMES_H
    11  
    12  #define IS_ABSOLUTE_PATH(path) ((path)[0] == '/')
    13  
    14  #endif