X-Git-Url: https://www.fi.muni.cz/~kas/git//home/kas/public_html/git/?a=blobdiff_plain;ds=inline;f=backend%2Fdvi%2Fmdvi-lib%2Fprivate.h;h=6564c25346766422bba9d7147b853e5aae716e7c;hb=7a6187803fffe561099ea780692ab5b959093220;hp=c547cd2d639e3955bea015918962021d5f4a7da7;hpb=13a06349251874bd35d2f03c3fc93217cee749a2;p=evince.git diff --git a/backend/dvi/mdvi-lib/private.h b/backend/dvi/mdvi-lib/private.h index c547cd2d..6564c253 100644 --- a/backend/dvi/mdvi-lib/private.h +++ b/backend/dvi/mdvi-lib/private.h @@ -19,6 +19,19 @@ #define _MDVI_PRIVATE_H 1 #define HAVE_PROTOTYPES 1 + +#if STDC_HEADERS +# /* kpathsea's headers (wrongly!) redefine strchr() and strrchr() to +# non ANSI C functions if HAVE_STRCHR and HAVE_STRRCHR are not defined. +# */ +# ifndef HAVE_STRCHR +# define HAVE_STRCHR +# endif +# ifndef HAVE_STRRCHR +# define HAVE_STRRCHR +# endif +#endif + #include #include #include @@ -26,6 +39,7 @@ #include #include #include +#include #define ISSP(p) (*(p) == ' ' || *(p) == '\t') #define SKIPSP(p) while(ISSP(p)) p++