Skip to content

Commit

Permalink
Fix debug/default malloc inclusion
Browse files Browse the repository at this point in the history
  • Loading branch information
ghaerr committed Dec 27, 2024
1 parent f5f1864 commit 0212d53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libc/malloc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ OBJS = \
fmemalloc.o \
dprintf.o \

# debug malloc for all compilers
OBJS += $(DEFAULT_MALLOC_OBJS)
# default and debug mallocs for all compilers
OBJS += $(DEFAULT_MALLOC_OBJS) $(DEBUG_MALLOC_OBJS)

# arena malloc works with OWC only for now
ifeq "$(COMPILER)" "watcom"
Expand Down

0 comments on commit 0212d53

Please sign in to comment.