Remove some duplicate declarations in headers.

Explicitly declare some functions as returning void.
This commit is contained in:
Kees van Reeuwijk
2010-04-13 15:22:38 +00:00
parent e0792d72d7
commit fa3adedf63
6 changed files with 5 additions and 9 deletions

View File

@@ -21,10 +21,10 @@
*/
#ifndef UNUSED
#if defined(__GNUC__)
#if defined _lint
# define UNUSED(v) /*lint -e(715,818)*/ v
#elif defined(__GNUC__)
# define UNUSED(v) UNUSED_ ## v __attribute((unused))
#elif defined _lint
# define UNUSED(v) /*lint -e(715)*/ v
#elif defined __LCLINT__
# define UNUSED(v) /*@unused@*/ v
#else