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