1
mirror of https://github.com/mpv-player/mpv synced 2024-07-11 23:47:56 +02:00
mpv/mpbswap.h
diego 37ea342f85 #include config.h before all other headers.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@26235 b3059339-0415-0410-9bf9-f77b7e298cf2
2008-03-14 16:46:13 +00:00

13 lines
233 B
C

#ifndef MPLAYER_MPBSWAP_H
#define MPLAYER_MPBSWAP_H
#include <sys/types.h>
#include "config.h"
#include "libavutil/bswap.h"
#ifndef HAVE_SWAB
void swab(const void *from, void *to, ssize_t n);
#endif
#endif /* MPLAYER_MPBSWAP_H */