summaryrefslogtreecommitdiff
path: root/src/core/line-split.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/line-split.c')
-rw-r--r--src/core/line-split.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/line-split.c b/src/core/line-split.c
index 9d4c0ab0..2810a0d5 100644
--- a/src/core/line-split.c
+++ b/src/core/line-split.c
@@ -31,12 +31,12 @@
too high. */
#define MAX_CHARS_IN_LINE 65536
-typedef struct {
+struct _LINEBUF_REC {
int len;
int alloc;
int remove;
char *str;
-} LINEBUF_REC;
+};
static inline int nearest_power(int num)
{