Compare commits

...

2 Commits

Author SHA1 Message Date
Alessandro Mauri 3bd678d48e case EOF is now checked only on x86 arches 4 years ago
Alessandro Mauri 04bfca1932 make respects system compiler setting 4 years ago
  1. 2
      hkd.c
  2. 2
      makefile

@ -753,7 +753,9 @@ void parse_config_file (void)
bb++;
// get state
switch (*bb) {
#if defined(__X86_64__) || defined(__i386__)
case EOF:
#endif
case '\0':
// If it is the end of the last block exit
if (exit_state > 1)

@ -1,4 +1,4 @@
CC = gcc
CC ?= gcc
CFLAGS = -Wall -Werror -pedantic --std=c99 -O2
VERSION = 0.3
PREFIX = /usr/local

Loading…
Cancel
Save