typedef key -> #define key_t - can't use typedef, due to <sys/types.h>

This commit is contained in:
2024-05-15 09:42:33 +02:00
parent 9ef262af48
commit 022daf0a89
5 changed files with 33 additions and 12 deletions

View File

@@ -346,7 +346,7 @@ FEN_OBJS := $(PIECE_OBJS) fen.o position.o bitboard.o board.o \
BB_OBJS := $(FEN_OBJS)
MOVEGEN_OBJS := $(BB_OBJS) move.o move-gen.o
ATTACK_OBJS := $(MOVEGEN_OBJS)
MOVEDO_OBJS := $(ATTACK_OBJS) move-do.o
MOVEDO_OBJS := $(ATTACK_OBJS) move-do.o hash.o
PERFT_OBJS := $(MOVEDO_OBJS) search.o misc.o
TEST := $(addprefix $(BINDIR)/,$(TEST))