strcmp(1): fix program_name type

This commit is contained in:
dtb 2024-07-15 04:29:43 -06:00
parent 16f23e11c0
commit efb3ce626d
Signed by: trinity
GPG Key ID: 34C0543BBB6AF81B

View File

@ -20,7 +20,7 @@
#include <stdlib.h> /* size_t */
#include <sysexits.h> /* EX_USAGE */
static *program_name = "strcmp";
char *program_name = "strcmp";
int main(int argc, char *argv[]){
if (argc < 3) {