- version information consolidated into version.h - removed strip from Makefile - updated PKGBUILD - fixed minor things in launcher.c - added header guards
13 lines
220 B
C
13 lines
220 B
C
#ifndef M2L_MACROS_H
|
|
#define M2L_MACROS_H
|
|
|
|
#define UNUSED(x) ((void)(x))
|
|
|
|
#define STRINGIFY_A_(x) #x
|
|
#define STRINGIFY_A(x) STRINGIFY_A_(x)
|
|
|
|
#define STRINGIFY_W_(x) L ## #x
|
|
#define STRINGIFY_W(x) STRINGIFY_W_(x)
|
|
|
|
#endif
|