annotate mpbswap.h @ 23639:2606b8c645de

Hide our swab prototype when the system has swab since at least the Solaris definition is incompatible with ours (char * vs. void *)
author reimar
date Sun, 24 Jun 2007 17:24:13 +0000
parents a81e246e3b38
children 4129c8cfa742
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
21507
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
1 #ifndef MPBSWAP_H
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
2 #define MPBSWAP_H
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
3
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
4 #include "libavutil/bswap.h"
23639
2606b8c645de Hide our swab prototype when the system has swab since at least the
reimar
parents: 23638
diff changeset
5 #ifndef HAVE_SWAB
23638
a81e246e3b38 Make sure we always have a swab() prototype when we use it,
reimar
parents: 21557
diff changeset
6 void swab(const void *from, void *to, ssize_t n);
23639
2606b8c645de Hide our swab prototype when the system has swab since at least the
reimar
parents: 23638
diff changeset
7 #endif
21507
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
8
fa99b3d31d13 Hack around libavutil/bswap.h compilation problems due to always_inline undefined.
reimar
parents:
diff changeset
9 #endif /* MPBSWAP_H */