/* $NetBSD: Lint_strlen.c,v 1.3 2024/12/01 16:16:57 rillig Exp $ */

/*
 * This file placed in the public domain.
 * Chris Demetriou, November 5, 1997.
 */

#include <string.h>

/*ARGSUSED*/
size_t
strlen(const char *s)
{
	return 0;
}
