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 // Exact values etc. are checked in the other file where access to 11 // other constants is easy. 12 13 #include <wchar.h> 14 15 wchar_t c_wchar_t_min = WCHAR_MIN; 16 wchar_t c_wchar_t_max = WCHAR_MAX; 17