mirror of
https://github.com/Atmosphere-NX/Atmosphere
synced 2024-12-22 12:21:18 +00:00
thermosphere: libc: fix missing macro
This commit is contained in:
parent
ce1df0ac23
commit
7a774adbc3
1 changed files with 5 additions and 0 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue