1
mirror of https://github.com/mpv-player/mpv synced 2024-09-16 22:19:59 +02:00
mpv/mpbswap.h
reimar 3fd9aa8196 Hide our swab prototype when the system has swab since at least the
Solaris definition is incompatible with ours (char * vs. void *)


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23659 b3059339-0415-0410-9bf9-f77b7e298cf2
2007-06-24 17:24:13 +00:00

10 lines
165 B
C

#ifndef MPBSWAP_H
#define MPBSWAP_H
#include "libavutil/bswap.h"
#ifndef HAVE_SWAB
void swab(const void *from, void *to, ssize_t n);
#endif
#endif /* MPBSWAP_H */