summaryrefslogtreecommitdiff
path: root/lib/libc/string/Lint_strcmp.c
blob: d57e9eb2256f3cb040c63e78348542de0e2c4fa5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*	$NetBSD: Lint_strcmp.c,v 1.1 1997/11/06 00:52:26 cgd Exp $	*/

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

#include <string.h>

/*ARGSUSED*/
int
strcmp(s1, s2)
	const char *s1, *s2;
{
	return (0);
}