17 lines
225 B
C
17 lines
225 B
C
|
/*
|
||
|
* linux/lib/string.c
|
||
|
*
|
||
|
* Copyright (C) 1991, 1992 Linus Torvalds
|
||
|
*/
|
||
|
|
||
|
#ifndef __GNUC__
|
||
|
#error I want gcc!
|
||
|
#endif
|
||
|
|
||
|
#include <linux/types.h>
|
||
|
|
||
|
#define extern
|
||
|
#define inline
|
||
|
#define __LIBRARY__
|
||
|
#include <linux/string.h>
|