Skip to content

Commit

Permalink
* Linux-ARM accomodation for the last four commits
Browse files Browse the repository at this point in the history
  • Loading branch information
Shawn David Pringle, B.Sc. committed Nov 3, 2024
1 parent b6bcd83 commit e52c91b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions source/be_alloc.h
Original file line number Diff line number Diff line change
Expand Up @@ -180,8 +180,8 @@ extern char *ERealloc(char *orig, uintptr_t newsize);
#if !defined(__GLIBC_PREREQ)
# define __GLIBC_PREREQ(x,y) false
#endif
#if defined(__DJGPP__) ? (__DJGPP__ <= 2 && __DJGPP_MINOR__ < 4) : \
(!__GLIBC_PREREQ(2, 39))
#if defined(__DJGPP__) ? __DJGPP__ <= 2 && __DJGPP_MINOR__ < 4 : \
(!__GLIBC_PREREQ(2, 39) || defined(EARM))
size_t strlcpy(char *dest, char *src, size_t maxlen);
size_t strlcat(char *dest, char *src, size_t maxlen);
#endif
Expand Down

0 comments on commit e52c91b

Please sign in to comment.