AC_DEFINE([WARNING], 1)
fi])
-dnl Used in tests/Makefile.am to build the test only if error() is available.
+dnl Used in tests/Makefile.am to build the test only if function is available.
AM_CONDITIONAL([HAVE_ERROR_H],[test "x$ac_cv_header_error_h" = xyes])
AM_CONDITIONAL([HAVE_VFORK],[test "x$ac_cv_func_vfork_works" = xyes])
HOOK_VOID1(void, perror, STDERR_FILENO,
char const *, s)
-/* error(3) */
+/* error(3), non-standard GNU extension */
#ifdef HAVE_ERROR_H
static void error_vararg(int status, int errnum,
char const *filename, unsigned int linenum,
#ifndef COMPILER_H
#define COMPILER_H 1
-/* Prevent/force inlining. Used to improve performance. */
#ifdef HAVE___ATTRIBUTE__
+/* Prevent/force inlining. Used to improve performance. */
# define noinline __attribute__((noinline))
# define always_inline __attribute__((always_inline))
+/* Unused parameter. */
# define unused __attribute__((unused))
#else
# define noinline