diff --git a/src/ls.c b/src/ls.c index 7b34274..d536f90 100644 --- a/src/ls.c +++ b/src/ls.c @@ -29,7 +29,9 @@ #include /* constants */ -#define PROGNAME "ls" +#ifndef PROGNAME +# define PROGNAME "ls" +#endif /* macros */ #define max(a, b) ((a) > (b) ? (a) : (b))