mirror of
https://github.com/systemd/systemd.git
synced 2026-08-12 22:17:19 +00:00
11 lines
235 B
Bash
Executable File
11 lines
235 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# SPDX-License-Identifier: LGPL-2.1-or-later
|
|
set -eu
|
|
set -o pipefail
|
|
|
|
CC=${1:?}
|
|
shift
|
|
|
|
$CC -E -dM -include linux/stat.h "$@" - </dev/null | \
|
|
awk '/^#define[ \t]+STATX_ATTR_[A-Z][A-Z_]*[ \t]+/ { print $2; }'
|