]> arthur.barton.de Git - ngircd-alex.git/blobdiff - src/portab/strdup.c
Add Doxygen @file documentation to each source and header file
[ngircd-alex.git] / src / portab / strdup.c
index e735157043084d633e84ff7a9b578bca4e832a12..7c0ee8fd26d34b5746267f0da0f7d73cd9216101 100644 (file)
@@ -1,13 +1,16 @@
 /*
  * ngIRCd -- The Next Generation IRC Daemon
- *
- * strdup() implementation.  Public domain.
- *
- * $Id: strdup.c,v 1.1 2005/04/16 09:20:53 fw Exp $
  */
 
 #include "portab.h"
 
+/**
+ * @file
+ * strdup() implementation. Public domain.
+ */
+
+#ifndef HAVE_STRDUP
+
 #include "imp.h"
 #include <string.h>
 #include <stdlib.h>
@@ -15,8 +18,6 @@
 
 #include "exp.h"
 
-#ifndef HAVE_STRDUP
-
 GLOBAL char *
 strdup( const char *s )
 {