程序15-10 linux/lib/string.c
1 /*
2 * linux/lib/string.c
3 *
4 * (C) 1991 Linus Torvalds
5 */
6
7 #ifndef __GNUC__ // 需要GNU的C编译器编译。
8 #error I want gcc!
9 #endif
10
11 #define extern
12 #define inline
13 #define __LIBRARY__
14 #include <string.h>
15