More needed <stdlib.h>. Note why it and <stdio.h> are needed.

Change-Id: Id3f5eb3740fbc66202311f1d7d7933193cf4da2d
Reviewed-on: https://code.wireshark.org/review/11633
Reviewed-by: Guy Harris <guy@alum.mit.edu>
This commit is contained in:
Guy Harris 2015-11-07 17:11:01 -08:00
parent 71c09602ba
commit f385922d77
4 changed files with 7 additions and 3 deletions

View File

@ -27,6 +27,7 @@
#include "config.h"
#include <stdio.h>
#include <stdlib.h> /* for atoi() and strtoul() */
#include <epan/packet.h>
#include <epan/strutil.h>

View File

@ -30,7 +30,8 @@
#include "config.h"
#include <stdio.h>
#include <stdio.h> /* for sscanf() */
#include <stdlib.h> /* for strtoul() */
#include <epan/packet.h>
#include <epan/strutil.h>

View File

@ -29,7 +29,8 @@
#include "config.h"
#include <stdio.h>
#include <stdio.h> /* for sscanf() */
#include <stdlib.h> /* for atoi() and strtoul() */
#include <epan/packet.h>
#include <epan/req_resp_hdrs.h>

View File

@ -34,7 +34,8 @@
#include "config.h"
#include <stdio.h>
#include <stdio.h> /* for sscanf() */
#include <stdlib.h> /* for strtoul() */
#include <epan/packet.h>
#include <epan/prefs.h>