diff options
author | Michael Niedermayer <michaelni@gmx.at> | 2002-11-10 11:46:59 +0000 |
---|---|---|
committer | Michael Niedermayer <michaelni@gmx.at> | 2002-11-10 11:46:59 +0000 |
commit | b8a78f419dd67cebc70f78e3d183c7eb4ed10c0e (patch) | |
tree | f502064c04d45369a01aa2722ac173b80301b8d3 /libav/tcp.c | |
parent | f11d3f23105f8c7e195990ab2c1728d3dd2f206f (diff) | |
download | ffmpeg-b8a78f419dd67cebc70f78e3d183c7eb4ed10c0e.tar.gz |
reversing header game
MIN/MAX -> FFMIN/FFMAX
Originally committed as revision 1184 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libav/tcp.c')
-rw-r--r-- | libav/tcp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libav/tcp.c b/libav/tcp.c index 6f4c037dcb..61d8665525 100644 --- a/libav/tcp.c +++ b/libav/tcp.c @@ -16,11 +16,11 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -#include <sys/socket.h> #include "avformat.h" #include <unistd.h> #include <ctype.h> #include <sys/types.h> +#include <sys/socket.h> #include <netinet/in.h> #ifndef __BEOS__ # include <arpa/inet.h> |