mirror of
https://github.com/fastfetch-cli/fastfetch.git
synced 2026-09-13 02:42:09 +02:00
7 lines
129 B
C
7 lines
129 B
C
#pragma once
|
|
|
|
static inline void ffUnused(int dummy, ...) {
|
|
(void) dummy;
|
|
}
|
|
#define FF_UNUSED(...) ffUnused(0, __VA_ARGS__);
|