My Kernel v0.1.0
stringify.h
1#ifndef UTILS_STRINGIFY_H
2#define UTILS_STRINGIFY_H
3
8#define stringify(_x) stringify1(_x)
9#define stringify1(_x) #_x
10
11#endif /* UTILS_STRINGIFY_H */