mirror of
https://github.com/qmk/qmk_firmware
synced 2025-01-12 09:53:11 +00:00
8 lines
82 B
C
8 lines
82 B
C
|
#ifndef UTIL_H
|
||
|
#define UTIL_H 1
|
||
|
|
||
|
#define XSTR(s) STR(s)
|
||
|
#define STR(s) #s
|
||
|
|
||
|
#endif
|