/*
* Copyright (c) 2001 Proofpoint, Inc. and its suppliers.
* All rights reserved.
*
* By using this file, you agree to the terms and conditions set
* forth in the LICENSE file which can be found at the top level of
* the sendmail distribution.
*/
int
int argc;
char **argv;
{
int i, d, h;
char *r;
"If tests for \"h == 2\" fail, check whether size_t is signed on your OS.\n\
If that is the case, add -DSM_CONF_BROKEN_SIZE_T to confENVDEF\n\
and start over. Otherwise contact sendmail.org.\n");
#endif /* !SM_CONF_BROKEN_SIZE_T */
d = 2;
r = "2";
"got %s instead\n", buf);
SM_TEST(i == 1);
SM_TEST(h == 2);
d = 2;
r = "2\n";
"got %s instead\n", buf);
SM_TEST(i == 1);
SM_TEST(h == 2);
return sm_test_end();
}