]> git.tuebingen.mpg.de Git - osl.git/blobdiff - examples/osltar/osltar.c
Update URLs and email addresses.
[osl.git] / examples / osltar / osltar.c
index 3d3a6400a6425ed3ba4eddd624145af968b63edf..d59909ffed677550384acb71104212250258d64f 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2009 Andre Noll <maan@systemlinux.org>
+ * Copyright (C) 2009 Andre Noll <maan@tuebingen.mpg.de>
  *
  * Licensed under the GPL v2. For licencing details see COPYING.
  */
@@ -35,10 +35,11 @@ enum osltar_columns {
 
 
 /**
- * We want doxygen to create documentation for certain static functions. So we
- * use __static__ for such functions.
+ * \cond We want doxygen to create documentation for certain static functions.
+ * So we use __static__ for such functions.
  */
 #define __static__ static
+/** \endcond */
 
 /**
  * Compare two osl objects of string type.
@@ -220,7 +221,7 @@ static int com_create(int argc, char **argv)
 /**
  * Write the whole buffer to a file descriptor.
  */
-ssize_t write_all(int fd, const void *buf, size_t size)
+static ssize_t write_all(int fd, const void *buf, size_t size)
 {
        const char *b = buf;
        while (size) {