aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAndres Freund <andres@anarazel.de>2017-10-01 15:24:14 -0700
committerAndres Freund <andres@anarazel.de>2017-10-01 15:24:58 -0700
commit1f2830f9df9f0196ba541c1e253463afe657cb67 (patch)
tree801a338d28bc6b38128501e9c27b266bb8d822d7 /src
parent784905795f8aadc09efe2fdae195279d17250f00 (diff)
downloadpostgresql-1f2830f9df9f0196ba541c1e253463afe657cb67.tar.gz
postgresql-1f2830f9df9f0196ba541c1e253463afe657cb67.zip
Remove redundant stdint.h include.
Discussion: https://postgr.es/m/31674.1506788226@sss.pgh.pa.us
Diffstat (limited to 'src')
-rw-r--r--src/include/port/pg_bswap.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/include/port/pg_bswap.h b/src/include/port/pg_bswap.h
index bba0ca5490d..0b2dcf52cb5 100644
--- a/src/include/port/pg_bswap.h
+++ b/src/include/port/pg_bswap.h
@@ -21,10 +21,10 @@
#define PG_BSWAP_H
-/* In all supported versions msvc provides _byteswap_* functions in stdlib.h */
-#ifdef _MSC_VER
-#include <stdlib.h>
-#endif
+/*
+ * In all supported versions msvc provides _byteswap_* functions in stdlib.h,
+ * already included by c.h.
+ */
/* implementation of uint16 pg_bswap16(uint16) */