]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - close_on_fork.c
afs: Document ->lpr of struct afs_callback_arg.
[paraslash.git] / close_on_fork.c
index 378799c7d5505135d59e976cd43416984c9500a6..7e0c8e6474b48a932ca0c107862391466415ec96 100644 (file)
@@ -1,13 +1,13 @@
-/*
- * Copyright (C) 2005-2009 Andre Noll <maan@systemlinux.org>
- *
- * Licensed under the GPL v2. For licencing details see COPYING.
- */
+/* Copyright (C) 2005 Andre Noll <maan@tuebingen.mpg.de>, see file COPYING. */
 
 /** \file close_on_fork.c Manage a list of fds that should be closed on fork. */
+
+#include <regex.h>
+
 #include "para.h"
 #include "list.h"
 #include "string.h"
+#include "close_on_fork.h"
 
 static struct list_head close_on_fork_list;
 static int initialized;
@@ -15,7 +15,7 @@ static int initialized;
 /**
  * Describes an element of the close-on-fork list.
  *
- * \sa list.h
+ * \sa \ref list.h.
  */
 struct close_on_fork {
        /** The file descriptor which should be closed after fork(). */