mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
f50d83413e
Some files that should have their copyrights checked are still placed on the copyright ignore list. - These entries have been tidied up - Copyrights of those files have been updated.
14 lines
345 B
C
14 lines
345 B
C
/*
|
|
* SPDX-FileCopyrightText: 2024 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#if __has_include(<bsd/sys/queue.h>)
|
|
/* On Linux, try using sys/queue.h provided by libbsd-dev */
|
|
#include <bsd/sys/queue.h>
|
|
#else
|
|
/* Fall back to sys/queue.h which may exist e.g. on macOS */
|
|
#include_next <sys/queue.h>
|
|
#endif
|