mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 08:26:52 +03:00
5 lines
110 B
Bash
5 lines
110 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
cpp -dM -include errno.h - </dev/null | \
|
||
|
awk '/^#define[ \t]+E[^ _]+[ \t]+/ { print $2; }'
|