Mercurial > minori
annotate include/core/array.h @ 35:329b7921a6be
ci/osx: use debian instead of alpine
for some reason osxcross doesn't support musl libc
properly, so we have to use debian
also this converts our DOS-style files to Unix-style files
because Windows sucks :)
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Thu, 21 Sep 2023 11:43:24 -0400 |
parents | 8a4122caaf2f |
children | 2743011a6042 |
rev | line source |
---|---|
35
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
1 #ifndef __core__array_h |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
2 #define __core__array_h |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
3 |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
4 #ifndef ARRAYSIZE |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
5 #define ARRAYSIZE(x) \ |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
6 (sizeof(x) / sizeof(x[0])) |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
7 #endif |
329b7921a6be
ci/osx: use debian instead of alpine
Paper <mrpapersonic@gmail.com>
parents:
20
diff
changeset
|
8 |
19
d05b1be2f3a6
anime_list.cpp: fix build failures on linux
Paper <mrpapersonic@gmail.com>
parents:
diff
changeset
|
9 #endif // __core__array_h |