mirror of
https://github.com/torvalds/linux.git
synced 2024-11-23 20:51:44 +00:00
487ea80a28
ACPICA commit 738d7b0726e6c0458ef93c0a01c0377490888d1e Affects all source modules and utility signons. Link: https://github.com/acpica/acpica/commit/738d7b07 Signed-off-by: Bob Moore <robert.moore@intel.com> Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
25 lines
676 B
C
25 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 - 2022, 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__ */
|