1
0
Fork 0

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
1 changed files with 3 additions and 2 deletions

View File

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