/*
* Copyright (c) 2000-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.
*/
#include <string.h>
int
int argc;
char **argv;
{
char *r;
SM_TEST(sm_path_isdevnull(r));
SM_TEST(!sm_path_isdevnull(r));
r = "nul";
SM_TEST(!sm_path_isdevnull(r));
return sm_test_end();
}