diff options
Diffstat (limited to 'include/dix.h')
-rw-r--r-- | include/dix.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/dix.h b/include/dix.h index 56c55b3da..f346b43a2 100644 --- a/include/dix.h +++ b/include/dix.h @@ -1,4 +1,3 @@ -/* $XFree86: xc/programs/Xserver/include/dix.h,v 3.26 2003/01/12 02:44:27 dawes Exp $ */ /*********************************************************** Copyright 1987, 1998 The Open Group @@ -45,7 +44,6 @@ ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. ******************************************************************/ -/* $Xorg: dix.h,v 1.4 2001/02/09 02:05:15 xorgcvs Exp $ */ #ifndef DIX_H #define DIX_H @@ -811,4 +809,10 @@ typedef struct { SelectionCallbackKind kind; } SelectionInfoRec; +/* strcasecmp.c */ +#if NEED_STRCASECMP +#define strcasecmp xstrcasecmp +extern int xstrcasecmp(char *s1, char *s2); +#endif + #endif /* DIX_H */ |