diff options
author | marha <marha@users.sourceforge.net> | 2009-10-07 08:43:18 +0000 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2009-10-07 08:43:18 +0000 |
commit | c73dc01b6de45612b24dc2dd34fba24d81ebf46c (patch) | |
tree | 50278a03a26262d5cc30244c65aeb31002c47cec /libxkbfile/src/XKBfileInt.h | |
parent | 77a4732b0637493966889fe3545966fdc12a1b5e (diff) | |
download | vcxsrv-c73dc01b6de45612b24dc2dd34fba24d81ebf46c.tar.gz vcxsrv-c73dc01b6de45612b24dc2dd34fba24d81ebf46c.tar.bz2 vcxsrv-c73dc01b6de45612b24dc2dd34fba24d81ebf46c.zip |
Switched to following packages:
fixesproto-4.1.1
randrproto-1.3.1
libxkbfile-1.0.6
Diffstat (limited to 'libxkbfile/src/XKBfileInt.h')
-rw-r--r-- | libxkbfile/src/XKBfileInt.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/libxkbfile/src/XKBfileInt.h b/libxkbfile/src/XKBfileInt.h index 7eb81a0c0..a99b7c821 100644 --- a/libxkbfile/src/XKBfileInt.h +++ b/libxkbfile/src/XKBfileInt.h @@ -30,6 +30,7 @@ /* $XFree86$ */ #include "XKBfile.h" +#include <string.h> #ifdef DEBUG #define _XkbLibError(c,l,d) \ @@ -64,9 +65,11 @@ _XFUNCPROTOBEGIN -extern char * _XkbDupString( - char * /* old_str */ -); +static inline +char *_XkbDupString(const char *s) +{ + return s ? strdup(s) : NULL; +} #define _XkbStrCaseEqual(s1,s2) (_XkbStrCaseCmp(s1,s2)==0) |