Origin: libsx-2.05-18.fc12.src.rpm Fedora package
Description: Conditionally include strdup().

Index: libsx-2.08/src/freq.c
===================================================================
--- libsx-2.08.orig/src/freq.c
+++ libsx-2.08/src/freq.c
@@ -45,6 +45,7 @@ int view_pt = 0;
  *
  * Which is why they don't provide strdup() in their libc.  Gay or what?
  */
+#ifndef strdup
 char *strdup(const char *str)
 {
   char *new;
@@ -55,6 +56,7 @@ char *strdup(const char *str)
 
   return new;
 }
+#endif
 
 #endif /* ultrix */
 
