Do not include <sys/param.h> header on Windows.

pull/34874/head
Matthew Stevenson 1 year ago
parent 02c21d8511
commit 939013bc14
  1. 5
      test/core/security/system_roots_test.cc

@ -20,9 +20,12 @@
#include <stdio.h>
#if defined(GPR_LINUX) || defined(GPR_FREEBSD) || defined(GPR_APPLE) || defined(GPR_WINDOWS)
#if defined(GPR_LINUX) || defined(GPR_FREEBSD) || defined(GPR_APPLE) || \
defined(GPR_WINDOWS)
#include <string.h>
#if defined(GPR_LINUX) || defined(GPR_FREEBSD) || defined(GPR_APPLE)
#include <sys/param.h>
#endif // GPR_LINUX || GPR_FREEBSD || GPR_APPLE
#include "gtest/gtest.h"

Loading…
Cancel
Save