As mentioned by @Philip Potter you can use the gcc attribute, I use these macros in a header to avoid GCC specific code, also having __attribute__ all over is a bit ugly.
#ifdef __GNUC__
# define UNUSED(x) UNUSED_ ## x __attribute__((__unused__))
#else
# define UNUSED(x) UNUSED_ ## x
#endif
#ifdef __GNUC__
# define UNUSED_FUNCTION(x) __attribute__((__unused__)) UNUSED_ ## x
#else
# define UNUSED_FUNCTION(x) UNUSED_ ## x
#endif
Then you can do...
void foo(int UNUSED(bar)) { ... }
and for functions...
static void UNUSED_FUNCTION(foo)(int bar) { ... }
I prefer this because you get an error if you try use bar in the code anywhere so you cant leave the attribute in by mistake.
note: as far as I know, MSVC doesn't have an equivalent.