1 //===- Log.h --------------------------------------------------------------===// 2 // 3 // The MCLinker Project 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 10 #ifndef ALONE_SUPPORT_LOG_H 11 #define ALONE_SUPPORT_LOG_H 12 13 #include <cstdio> 14 15 #define ALOGE(fmt, args...) \ 16 printf("%s:%s:%d: "fmt, __FILE__, __FUNCTION__, __LINE__, args) 17 18 #endif // ALONE_SUPPORT_LOG_H 19