Windows NT 4.0 source code leak
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

31 lines
854 B

/***
*assrt.c - assertions needed for string conversion routines
*
* Copyright (c) 1991-1991, Microsoft Corporation. All rights reserved.
*
*Purpose:
* Make sure that the data types used by the string conversion
* routines have the right size. If this file does not compile,
* the type definitions in cv.h should change appropriately.
*
*Revision History:
* 07-25-91 GDP written
* 05-26-92 GWK Windbg srcs
*
*******************************************************************************/
#include "cv.h"
static void assertion_test(void)
{
sizeof(u_char) == 1 ? 0 : 1/0,
sizeof(u_short) == 2 ? 0 : 1/0,
sizeof(u_long) == 4 ? 0 : 1/0,
sizeof(s_char) == 1 ? 0 : 1/0,
sizeof(s_short) == 2 ? 0 : 1/0,
sizeof(s_long) == 4 ? 0 : 1/0;
#ifdef _ULDSUPPORT
sizeof(long double) == 10 ? 0 : 1/0;
#endif
}