Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ NAME = sample
CC = gcc
FLAGS = -std=c99 -pedantic -g
FLAGS+= -Wall -Wno-unused-parameter -Wextra -Werror=vla -Werror
FLAGS+= $(EXTRAFLAGS)
VALGRIND = --show-leak-kinds=all --track-origins=yes --leak-check=full

BIND = bin
Expand Down
2 changes: 2 additions & 0 deletions src/configator.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,9 @@

#include <stdint.h>

#ifndef CONFIGATOR_MAX_LINE
#define CONFIGATOR_MAX_LINE 80
#endif

#if 0
#define CONFIGATOR_DEBUG
Expand Down