aboutsummaryrefslogtreecommitdiff
path: root/rpt.c
diff options
context:
space:
mode:
authorTristan Riehs <tristan.riehs@bordeaux-inp.fr>2024-02-03 17:54:02 +0100
committerTristan Riehs <tristan.riehs@bordeaux-inp.fr>2024-02-03 17:54:02 +0100
commitfc4f1875fe57c39bf122cfb43a30893fef58c157 (patch)
tree7a84c5bcacec39b2bb7d6c8250a23da780009ef6 /rpt.c
parent18a47f8b4bf99366beea3b9486566ebe26f7de5d (diff)
reapeat now built using the GNU Autotools
Diffstat (limited to 'rpt.c')
-rw-r--r--rpt.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/rpt.c b/rpt.c
index d6476ad..46a3de9 100644
--- a/rpt.c
+++ b/rpt.c
@@ -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