summaryrefslogtreecommitdiff
path: root/src/shared/exit-status.h
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2019-07-29 19:05:25 +0200
committerLennart Poettering <lennart@poettering.net>2019-07-29 19:05:25 +0200
commite04ed6db6b44681b7a7876b9c4a1e6adaf877670 (patch)
tree092d3d785b252e74139db089c16bce42a2cd9b91 /src/shared/exit-status.h
parent1d7458fbb1b09ebbfdcf775909e09c56d6a6023e (diff)
downloadsystemd-e04ed6db6b44681b7a7876b9c4a1e6adaf877670.tar.gz
exit-status: rename EXIT_STATUS_GLIBC → EXIT_STATUS_LIBC
After all these two exit codes are defined by ISO C as part of the C library, and it's not the GNU implementation defines them.
Diffstat (limited to 'src/shared/exit-status.h')
-rw-r--r--src/shared/exit-status.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/exit-status.h b/src/shared/exit-status.h
index d6da8c19b9..9ea147c842 100644
--- a/src/shared/exit-status.h
+++ b/src/shared/exit-status.h
@@ -75,11 +75,11 @@ enum {
};
typedef enum ExitStatusClass {
- EXIT_STATUS_GLIBC = 1 << 0, /* libc EXIT_STATUS/EXIT_FAILURE */
+ EXIT_STATUS_LIBC = 1 << 0, /* libc EXIT_STATUS/EXIT_FAILURE */
EXIT_STATUS_SYSTEMD = 1 << 1, /* systemd's own exit codes */
EXIT_STATUS_LSB = 1 << 2, /* LSB exit codes */
EXIT_STATUS_BSD = 1 << 3, /* BSD (EX_xyz) exit codes */
- EXIT_STATUS_FULL = EXIT_STATUS_GLIBC | EXIT_STATUS_SYSTEMD | EXIT_STATUS_LSB | EXIT_STATUS_BSD,
+ EXIT_STATUS_FULL = EXIT_STATUS_LIBC | EXIT_STATUS_SYSTEMD | EXIT_STATUS_LSB | EXIT_STATUS_BSD,
} ExitStatusClass;
typedef struct ExitStatusSet {