Fix implicit declaration of bswap_{32,64}

* src/data.c: Move include of <byteswap.h> ...
* src/lisp.h: ... here.
This commit is contained in:
Andreas Schwab 2024-03-30 08:29:52 +01:00
parent 21af3a9d97
commit 86c4e5a2fb
2 changed files with 1 additions and 1 deletions

View file

@ -23,7 +23,6 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#include <math.h>
#include <stdio.h>
#include <byteswap.h>
#include <count-one-bits.h>
#include <count-trailing-zeros.h>
#include <intprops.h>

View file

@ -36,6 +36,7 @@ along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>. */
#endif
#include <attribute.h>
#include <byteswap.h>
#include <count-leading-zeros.h>
#include <intprops.h>
#include <verify.h>