1 // Copyright 2016 The Fuchsia Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 // This file explicitly tests that <wchar.h> is correct and does not 6 // have an implicit dependency on <stdint.h> or some other header. 7 8 // As such, do not include any other header in this file. 9 10 11 // Exact values etc. are checked in the other file where access to 12 // other constants is easy. 13 #include <wchar.h> 14 15 wchar_t cpp_wchar_t_min = WCHAR_MIN; 16 wchar_t cpp_wchar_t_max = WCHAR_MAX; 17