You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
falk-werner_webfuse/lib/webfuse/impl/util/util.h

11 lines
186 B

#ifndef WF_IMPL_UTIL_UTIL_H
#define WF_IMPL_UTIL_UTIL_H
#ifdef __GNUC__
#define WF_UNUSED_PARAM(param) param __attribute__((unused))
#else
#define WF_UNUSED_PARAM(param)
#endif
#endif