1
0
mirror of https://github.com/falk-werner/webfuse-provider synced 2024-10-27 20:44:10 +00:00
falk-werner_webfuse-provider/lib/webfuse_provider/impl/util/util.h

11 lines
170 B
C
Raw Normal View History

#ifndef WFP_UTIL_H
#define WFP_UTIL_H
2019-03-26 22:04:53 +00:00
#ifdef __GNUC__
#define WFP_UNUSED_PARAM(param) param __attribute__((unused))
2019-03-26 22:04:53 +00:00
#else
#define WFP_UNUSED_PARAM(param)
2019-03-26 22:04:53 +00:00
#endif
#endif