aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-12-22 13:51:34 -0800
committerGuy Harris <guy@alum.mit.edu>2014-12-22 21:52:08 +0000
commit59b4ab53fcf08db3daa7461b463ca47e83e55079 (patch)
treeba1307c5dda8aeddfd44a02c8810c4cc5f63ff73 /epan
parentd541774a61c25eabe36d77319e66bd2fb0e0133e (diff)
Include <math.h> or <stdlib.h> as necessary to declare functions.
Various floating-point math functions require <math.h>, and abs() requires <stdlib.h>. Change-Id: I6831cfdb17eac3ce129b6800f0fe82fbcfef2d28 Reviewed-on: https://code.wireshark.org/review/6002 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/file-mp4.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/file-mp4.c b/epan/dissectors/file-mp4.c
index bbf37fbdbe..cdd1f90a49 100644
--- a/epan/dissectors/file-mp4.c
+++ b/epan/dissectors/file-mp4.c
@@ -31,6 +31,7 @@
#include "config.h"
+#include <math.h>
#include <epan/packet.h>
#include <epan/expert.h>