Author: kostya Date: Wed Jul 22 08:11:38 2009 New Revision: 4761 Log: Move system headers before local ones
Modified: rtmp/rtmpproto.c Modified: rtmp/rtmpproto.c ============================================================================== --- rtmp/rtmpproto.c Wed Jul 22 08:09:26 2009 (r4760) +++ rtmp/rtmpproto.c Wed Jul 22 08:11:38 2009 (r4761) @@ -26,15 +26,16 @@ /* needed for gethostname() */ #define _XOPEN_SOURCE 600 +#include <unistd.h> +#include <stdarg.h> +#include <sys/time.h> + #include "libavcodec/bytestream.h" #include "libavutil/avstring.h" #include "libavutil/lfg.h" #include "libavutil/sha.h" #include "avformat.h" -#include <unistd.h> -#include <stdarg.h> -#include <sys/time.h> #include "network.h" #include "flv.h" _______________________________________________ FFmpeg-soc mailing list [email protected] https://lists.mplayerhq.hu/mailman/listinfo/ffmpeg-soc
