thermosphere: libc: fix missing macro

This commit is contained in:
TuxSH 2020-01-31 23:15:34 +00:00
parent ce1df0ac23
commit 7a774adbc3

View file

@ -730,6 +730,11 @@ QUICKREF
/*SUPPRESS 560*/
/*SUPPRESS 530*/
/* Nonzero if X is aligned on a "long" boundary. */
#define ALIGNED(X) \
(((long)X & (sizeof (long) - 1)) == 0)
char *
strcat (char *s1, const char *s2)
{