mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-30 08:02:30 +00:00
4441e55d50
This affects all ACPICA source code modules. ACPICA commit c570953c914437e621dd5f160f26ddf352e0d2f4 Link: https://github.com/acpica/acpica/commit/c570953c Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Erik Kaneda <erik.kaneda@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
24 lines
676 B
C
24 lines
676 B
C
/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0 */
|
|
/******************************************************************************
|
|
*
|
|
* Name: acgccex.h - Extra GCC specific defines, etc.
|
|
*
|
|
* Copyright (C) 2000 - 2021, Intel Corp.
|
|
*
|
|
*****************************************************************************/
|
|
|
|
#ifndef __ACGCCEX_H__
|
|
#define __ACGCCEX_H__
|
|
|
|
/*
|
|
* Some versions of gcc implement strchr() with a buggy macro. So,
|
|
* undef it here. Prevents error messages of this form (usually from the
|
|
* file getopt.c):
|
|
*
|
|
* error: logical '&&' with non-zero constant will always evaluate as true
|
|
*/
|
|
#ifdef strchr
|
|
#undef strchr
|
|
#endif
|
|
|
|
#endif /* __ACGCCEX_H__ */
|