glx: remove __glXstrdup()
authorJuha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Tue, 16 Dec 2014 10:28:47 +0000 (12:28 +0200)
committerAbdiel Janulgue <abdiel.janulgue@linux.intel.com>
Tue, 16 Dec 2014 11:50:53 +0000 (13:50 +0200)
I didn't find this being used anywhere

Signed-off-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Reviewed-by: Matt Turner <mattst88@gmail.com>
src/glx/glxclient.h
src/glx/glxcmds.c

index 74c19c485643746173955a15200e026329488867..aaca989f1e32d39767dd21c8057c3efb662a3e71 100644 (file)
@@ -767,9 +767,6 @@ extern char *__glXQueryServerString(Display * dpy, int opcode,
 extern char *__glXGetString(Display * dpy, int opcode,
                             CARD32 screen, CARD32 name);
 
-extern char *__glXstrdup(const char *str);
-
-
 extern const char __glXGLClientVersion[];
 extern const char __glXGLClientExtensions[];
 
index 04d8db16096768eaa086f2d68fc53958efafaa33..f4f476e10b0412ccff945060bd982fbfac32e2fd 100644 (file)
@@ -2428,23 +2428,6 @@ __glXReleaseTexImageEXT(Display * dpy, GLXDrawable drawable, int buffer)
 
 #endif /* GLX_USE_APPLEGL */
 
-/**
- * \c strdup is actually not a standard ANSI C or POSIX routine.
- * Irix will not define it if ANSI mode is in effect.
- *
- * \sa strdup
- */
-_X_HIDDEN char *
-__glXstrdup(const char *str)
-{
-   char *copy;
-   copy = malloc(strlen(str) + 1);
-   if (!copy)
-      return NULL;
-   strcpy(copy, str);
-   return copy;
-}
-
 /*
 ** glXGetProcAddress support
 */