Skip to content

Commit 90e7f63

Browse files
author
Dan Brown
committed
enable compiler optimization
1 parent d715317 commit 90e7f63

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
EXE=csvquote
22
EXTRA=csvheader
3-
CFLAGS=-Wall -g
3+
CFLAGS=-Wall -g -O3
44

55
BINDIR?=/usr/local/bin
66

csvquote.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#define NDEBUG
77
#include "dbg.h"
88

9-
#define READ_BUFFER_SIZE (16 * 1024)
9+
#define READ_BUFFER_SIZE (64 * 1024)
1010
#define NON_PRINTING_FIELD_SEPARATOR 0x1F
1111
#define NON_PRINTING_RECORD_SEPARATOR 0x1E
1212

0 commit comments

Comments
 (0)