Browse Source

Fix inclusion of <sys/endian.h> (#2000)

Co-authored-by: adr-adr <adr@github>
master
Samuel Thibault 8 months ago
parent
commit
b8ef3a6102
No account linked to committer's email address
1 changed files with 5 additions and 0 deletions
  1. 5
    0
      src/libespeak-ng/spect.c

+ 5
- 0
src/libespeak-ng/spect.c View File

@@ -25,7 +25,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

#ifdef HAVE_SYS_ENDIAN_H
#include <sys/endian.h>
#else
#include <endian.h>
#endif

#include <espeak-ng/espeak_ng.h>
#include <espeak-ng/speak_lib.h>

Loading…
Cancel
Save