Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 273557
Collapse All | Expand All

(-)cmn.old/utils.h (-3 / +3 lines)
Lines 238-250 Link Here
238
     same. */
238
     same. */
239
239
240
  static char* strchr(const char* cs,int c)
240
  static char* strchr(const char* cs,int c)
241
    {return ::strchr(cs,c);}
241
    {return const_cast<char*>(::strchr(cs,c));}
242
242
243
  static char* strrchr(const char* cs,int c)
243
  static char* strrchr(const char* cs,int c)
244
    {return ::strrchr(cs,c);}
244
    {return const_cast<char*>(::strrchr(cs,c));}
245
245
246
  static char* strstr(const char* cs,const char* ct)
246
  static char* strstr(const char* cs,const char* ct)
247
    {return ::strstr(cs,ct);}
247
    {return const_cast<char*>(::strstr(cs,ct));}
248
248
249
  static void strcpy(char* s,const char* ct)
249
  static void strcpy(char* s,const char* ct)
250
    {::strcpy(s,ct);}
250
    {::strcpy(s,ct);}

Return to bug 273557