]> arthur.barton.de Git - netatalk.git/blobdiff - libatalk/compat/strdup.c
Merge master
[netatalk.git] / libatalk / compat / strdup.c
index 04a427582d1f37593867980c2295929b7f09cddb..9537a857752d2b4852f0c1fdab79272d341201ae 100644 (file)
@@ -1,9 +1,15 @@
+/*
+ * $Id: strdup.c,v 1.4 2003-02-17 01:51:08 srittau Exp $
+ */
+
+#ifdef HAVE_CONFIG_H
+#include "config.h"
+#endif /* HAVE_CONFIG_H */
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
-static int _strdup_dummy;
-
 #ifdef ultrix
 char *strdup(const char *string)
 {
@@ -14,4 +20,4 @@ char *strdup(const char *string)
 
   return new;
 }
-#endif
+#endif /* ultrix */