Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
GrieferAtWork committed Dec 27, 2024
1 parent 4a04097 commit 11954a1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/deemon/objects/int_logic.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,13 @@

DECL_BEGIN

#if Dee_SIZEOF_DIGIT == 2
#if Dee_SIZEOF_DIGIT == 2 && defined(CONFIG_HAVE_memsetw)
#define Dee_digit_memset(p, v, n) memsetw(p, v, n)
#elif Dee_SIZEOF_DIGIT == 4
#elif Dee_SIZEOF_DIGIT == 4 && defined(CONFIG_HAVE_memsetl)
#define Dee_digit_memset(p, v, n) memsetl(p, v, n)
#elif Dee_SIZEOF_DIGIT == 1
#elif Dee_SIZEOF_DIGIT == 1 && defined(CONFIG_HAVE_memset)
#define Dee_digit_memset(p, v, n) memset(p, v, n)
#elif Dee_SIZEOF_DIGIT == 8
#elif Dee_SIZEOF_DIGIT == 8 && defined(CONFIG_HAVE_memsetq)
#define Dee_digit_memset(p, v, n) memsetq(p, v, n)
#else /* Dee_SIZEOF_DIGIT == ... */
#define Dee_digit_memset(p, v, n) \
Expand Down

0 comments on commit 11954a1

Please sign in to comment.