Add -Wundef to --strict-warnings options.
[openssl.git] / test / testutil.h
index 39b6d0e6f1c1e0b6adcb7160a99ed9d085434e91..cc2f15306c9c6171078bf2682144bfa41c850ac3 100644 (file)
  * TEST_CASE_NAME is defined as the name of the test case function where
  * possible; otherwise we get by with the file name and line number.
  */
-# if __STDC_VERSION__ < 199901L
+# if !defined(__STDC_VERSION__) || __STDC_VERSION__ < 199901L
 #  if defined(_MSC_VER)
 #   define TEST_CASE_NAME __FUNCTION__
 #  else