diff options
author | Diego Biurrun <diego@biurrun.de> | 2008-05-09 09:30:43 +0000 |
---|---|---|
committer | Diego Biurrun <diego@biurrun.de> | 2008-05-09 09:30:43 +0000 |
commit | f38c6c6cab6177f944d740d8825f11fe381c5814 (patch) | |
tree | 7d1046624ee9f9fab4bf479e34e028445b39125a /libavformat | |
parent | 058aae3ce7626334013dbc9aef9136ba42464814 (diff) | |
download | ffmpeg-f38c6c6cab6177f944d740d8825f11fe381c5814.tar.gz |
string.h is a system header file, so use <> for it.
Originally committed as revision 13091 to svn://svn.ffmpeg.org/ffmpeg/trunk
Diffstat (limited to 'libavformat')
-rw-r--r-- | libavformat/apc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libavformat/apc.c b/libavformat/apc.c index 97de8c88ed..2e102a6ad7 100644 --- a/libavformat/apc.c +++ b/libavformat/apc.c @@ -19,8 +19,8 @@ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA */ +#include <string.h> #include "avformat.h" -#include "string.h" static int apc_probe(AVProbeData *p) { |