Staging
v0.8.1
https://github.com/torvalds/linux
Raw File
Tip revision: 3ce54450461bad18bbe1f9f5aa3ecd2f8e8d1235 authored by Linus Torvalds on 06 January 2008, 21:45:38 UTC
Linux 2.6.24-rc7
Tip revision: 3ce5445
strncmp.c
/*
 * Provide symbol in case str func is not inlined.
 *
 * Copyright (c) 2006-2007 Analog Devices Inc.
 *
 * Licensed under the GPL-2 or later.
 */

#define strncmp __inline_strncmp
#include <asm/string.h>
#undef strncmp

#include <linux/module.h>

int strncmp(const char *cs, const char *ct, size_t count)
{
	return __inline_strncmp(cs, ct, count);
}
EXPORT_SYMBOL(strncmp);
back to top