X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;f=ucw%2Fstkstring.h;h=62f9a514b9200fed4b6e2eb4fef8f4ebcf3ad4f1;hb=05ffab94be8da943cffb8fb30d7073ab78aef94c;hp=5cd2c6b85a2540f4ca13c9879f8b4c3abda6a3b3;hpb=c53020c26307aaae5d519ae2f90ea6dbd8911c39;p=libucw.git diff --git a/ucw/stkstring.h b/ucw/stkstring.h index 5cd2c6b8..62f9a514 100644 --- a/ucw/stkstring.h +++ b/ucw/stkstring.h @@ -15,7 +15,7 @@ #include #include #include -#include "ucw/string.h" +#include #define stk_strdup(s) ({ const char *_s=(s); uns _l=strlen(_s)+1; char *_x=alloca(_l); memcpy(_x, _s, _l); _x; }) #define stk_strndup(s,n) ({ const char *_s=(s); uns _l=strnlen(_s,(n)); char *_x=alloca(_l+1); memcpy(_x, _s, _l); _x[_l]=0; _x; })