mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 08:25:20 +09:00
10 lines
223 B
Bash
Executable File
10 lines
223 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -eu
|
|
|
|
for i in *.h */*.h; do
|
|
curl https://raw.githubusercontent.com/torvalds/linux/master/include/uapi/linux/$i -o $i
|
|
|
|
sed -i -e 's/__user //g' -e '/^#include <linux\/compiler.h>/ d' $i
|
|
done
|