Commit 53bfc70c authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa

Include inttypes.h (or cintypes for C++) instead of stdint.h

From autoconf manual, section 5.6.1 Portability of Headers, says:

"""
The C99 standard says that inttypes.h includes stdint.h, so there's no
need to include stdint.h separately in a standard environment. Some
implementations have inttypes.h but not stdint.h (e.g., Solaris 7),
but we don't know of any implementation that has stdint.h but not
inttypes.h.
"""
parent c4068cd4
......@@ -30,7 +30,7 @@
#include <config.h>
#endif /* HAVE_CONFIG_H */
#include <stdint.h>
#include <inttypes.h>
#include <stdlib.h>
#ifdef HAVE_UNISTD_H
#include <unistd.h>
......
......@@ -36,7 +36,7 @@ extern "C" {
#endif
#include <stdlib.h>
#include <stdint.h>
#include <inttypes.h>
#include <sys/types.h>
#include <nghttp2/nghttp2ver.h>
......
......@@ -27,9 +27,9 @@
#include "nghttp2_config.h"
#include <stdint.h>
#include <sys/types.h>
#include <cinttypes>
#include <cstdlib>
#include <string>
......
......@@ -27,7 +27,7 @@
#include "nghttp2_config.h"
#include <stdint.h>
#include <cinttypes>
#include <cstdlib>
#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
......
......@@ -28,7 +28,8 @@
#include "nghttp2_config.h"
#include <sys/types.h>
#include <stdint.h>
#include <cinttypes>
#include "h2load.h"
......
......@@ -24,7 +24,6 @@
*/
#include "shrpx.h"
#include <stdint.h>
#include <sys/types.h>
#include <sys/stat.h>
#ifdef HAVE_SYS_SOCKET_H
......@@ -59,6 +58,7 @@
#include <sys/resource.h>
#include <grp.h>
#include <cinttypes>
#include <limits>
#include <cstdlib>
#include <iostream>
......
......@@ -27,7 +27,6 @@
#include "shrpx.h"
#include <stdint.h>
#include <sys/types.h>
#ifdef HAVE_SYS_SOCKET_H
#include <sys/socket.h>
......@@ -39,6 +38,7 @@
#ifdef HAVE_ARPA_INET_H
#include <arpa/inet.h>
#endif // HAVE_ARPA_INET_H
#include <cinttypes>
#include <cstdio>
#include <vector>
#include <memory>
......
......@@ -27,8 +27,7 @@
#include "shrpx.h"
#include <stdint.h>
#include <cinttypes>
#include <vector>
#include <string>
#include <memory>
......
......@@ -27,8 +27,7 @@
#include "shrpx.h"
#include <stdint.h>
#include <cinttypes>
#include <map>
#include <set>
#include <memory>
......
......@@ -27,8 +27,7 @@
#include "shrpx.h"
#include <stdint.h>
#include <cinttypes>
#include <memory>
#include "http-parser/http_parser.h"
......
......@@ -26,7 +26,7 @@
#ifndef HAVE_TIMEGM
#include <stdint.h>
#include <inttypes.h>
/* Counter the number of leap year in the range [0, y). The |y| is the
year, including century (e.g., 2012) */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment