diff options
author | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-02-03 17:54:02 +0100 |
---|---|---|
committer | Tristan Riehs <tristan.riehs@bordeaux-inp.fr> | 2024-02-03 17:54:02 +0100 |
commit | fc4f1875fe57c39bf122cfb43a30893fef58c157 (patch) | |
tree | 7a84c5bcacec39b2bb7d6c8250a23da780009ef6 /rpt.c | |
parent | 18a47f8b4bf99366beea3b9486566ebe26f7de5d (diff) |
reapeat now built using the GNU Autotools
Diffstat (limited to 'rpt.c')
-rw-r--r-- | rpt.c | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -1,4 +1,4 @@ -#define _GNU_SOURCE /* getopt_long */ +#include "config.h" #include <errno.h> #include <fcntl.h> @@ -10,10 +10,8 @@ #include <sys/wait.h> #include <unistd.h> -#define VERSION "1.1.3" - /* Size of the buffer used to clone stdin. */ -#define BUFSIZE 8000 +#define BUFSIZE (1 << 12) /* Exit status */ #define EXIT_SUCCESS 0 |