This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//打印编译构建的日期和时间,类似:Dec 3 2012 09:59:57 | |
#define PRINT_BUILD_TIME { \ | |
printf("\tBuild time:\t%s %s\n", \ | |
__DATE__, __TIME__); \ | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
int main(void) | |
{ | |
return 0; | |
} |
NewerOlder