-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMacro.cpp
More file actions
37 lines (31 loc) · 670 Bytes
/
Macro.cpp
File metadata and controls
37 lines (31 loc) · 670 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/*
* =====================================================================================
*
* Filename: debug.cpp
*
* Description:
*
* Version: 1.0
* Created: 2015年06月09日 14时46分57秒
* Revision: none
* Compiler: gcc
*
* Author: zt (),
* Organization:
*
* =====================================================================================
*/
#include <stdio.h>
#include <stdlib.h>
// -DDEBUG
int main ( int argc, char* argv[] )
{
printf ( "test\n" );
#ifdef DEBUG
printf ( "debug................\n" );
#endif
#ifdef VER_D
printf ( "%s\n", VER_D );
#endif
return 0;
}