No longer force PROGNAME

This commit is contained in:
Pierre Pronchery 2016-01-29 17:11:02 +01:00
parent 239fc9e9df
commit 5270de9855

View File

@ -29,7 +29,9 @@
#include <limits.h>
/* constants */
#define PROGNAME "ls"
#ifndef PROGNAME
# define PROGNAME "ls"
#endif
/* macros */
#define max(a, b) ((a) > (b) ? (a) : (b))