root/lib/string.c

/* [previous][next][first][last][top][bottom][index][help] */
   1 /*
   2  *  linux/lib/string.c
   3  *
   4  *  Copyright (C) 1991, 1992  Linus Torvalds
   5  */
   6 
   7 #ifndef __GNUC__
   8 #error I want gcc!
   9 #endif
  10 
  11 #include <linux/types.h>
  12 
  13 #ifdef __cplusplus
  14 #define C_BEGIN extern "C" {
  15 #define C_END }
  16 #else
  17 #define C_BEGIN
  18 #define C_END
  19 #endif
  20 
  21 #undef __cplusplus
  22 #define extern
  23 #define inline
  24 #define __LIBRARY__
  25 
  26 C_BEGIN
  27 #include <linux/string.h>
  28 C_END

/* [previous][next][first][last][top][bottom][index][help] */