diff options
author | Matthieu Herrb <matthieu.herrb@laas.fr> | 2008-08-10 23:07:46 +0200 |
---|---|---|
committer | Matthieu Herrb <matthieu@bluenote.herrb.net> | 2008-08-10 23:07:46 +0200 |
commit | 2e2ce817ce404a5e000c9750fa96f656fed370b8 (patch) | |
tree | 07da13f2a6ba0dd799a80b27f3d5c90ff4243a2f /include/dix.h | |
parent | 02efa78ce2da470b252289ff2af598d06bc84ece (diff) |
Move strcasecmp(), strcasencmp() and strcasestr() prototypes to os.h
And make sure os.h is included in files that use it.
Diffstat (limited to 'include/dix.h')
-rw-r--r-- | include/dix.h | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/include/dix.h b/include/dix.h index 64e3d7874..476ec2ecb 100644 --- a/include/dix.h +++ b/include/dix.h @@ -596,22 +596,6 @@ typedef struct { int count; } DeviceEventInfoRec; -/* strcasecmp.c */ -#if NEED_STRCASECMP -#define strcasecmp xstrcasecmp -extern int xstrcasecmp(const char *s1, const char *s2); -#endif - -#if NEED_STRNCASECMP -#define strncasecmp xstrncasecmp -extern int xstrncasecmp(const char *s1, const char *s2, size_t n); -#endif - -#if NEED_STRCASESTR -#define strcasestr xstrcasestr -extern char *xstrcasestr(const char *s, const char *find); -#endif - extern int XItoCoreType(int xi_type); extern Bool DevHasCursor(DeviceIntPtr pDev); extern Bool IsPointerDevice( DeviceIntPtr dev); |