1
0
mirror of https://github.com/mpv-player/mpv synced 2025-04-01 14:50:07 +00:00

Make sure we always have a swab() prototype when we use it,

even if we use our osdep/swab.c emulation


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23658 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
reimar 2007-06-24 15:25:32 +00:00
parent f58c64c3f3
commit d0d23a71da
3 changed files with 3 additions and 0 deletions

View File

@ -15,6 +15,7 @@
#include "mp_msg.h"
#include "help_mp.h"
#include "mpbswap.h"
#include "ad_internal.h"

View File

@ -8,6 +8,7 @@
#include "mp_msg.h"
#include "help_mp.h"
#include "mpbswap.h"
#include "ad_internal.h"

View File

@ -2,5 +2,6 @@
#define MPBSWAP_H
#include "libavutil/bswap.h"
void swab(const void *from, void *to, ssize_t n);
#endif /* MPBSWAP_H */