1
0
Fork 0

intcmp(1): without <sysexits.h> fall back to ANSI C

This commit is contained in:
dtb 2023-12-25 15:56:38 -07:00
parent 5471e18fea
commit cee6575a57
Signed by untrusted user: trinity
GPG Key ID: 31FF85CCB6DC7641
1 changed files with 2 additions and 2 deletions

View File

@ -18,9 +18,9 @@
#include <errno.h> /* errno */
#include <stdio.h> /* fprintf(3), stderr */
#include <stdlib.h> /* strtol(3), size_t */
#include <stdlib.h> /* strtol(3), size_t, EXIT_FAILURE */
#ifndef EX_USAGE
# include <sysexits.h> /* EX_USAGE */
# define EX_USAGE EXIT_FAILURE
#endif
#include <unistd.h> /* getopt(3), optind */