1
0
forked from bonsai/harakit

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

This commit is contained in:
dtb 2023-12-25 15:58:47 -07:00
parent d4ee9bb93b
commit 8e330d8a63
Signed by untrusted user: trinity
GPG Key ID: 31FF85CCB6DC7641

View File

@ -1,6 +1,7 @@
#include <stdio.h> /* fprintf(3), stderr */ #include <stdio.h> /* fprintf(3), stderr */
#ifndef EX_USAGE #include <stdlib.h> /* EXIT_FAILURE */
# include <sysexits.h> /* EX_USAGE */ #if !defined EX_USAGE
# define EX_USAGE EXIT_FAILURE
#endif #endif
static char *program_name = "strcmp"; static char *program_name = "strcmp";