7 lines
101 B
C
7 lines
101 B
C
#ifndef MACRO_H__
|
|
#define MACRO_H__
|
|
|
|
#define TOSTRING_(x) #x
|
|
#define TOSTRING(x) TOSTRING_(x)
|
|
|
|
#endif |